:root {
  --_apps---typography--heading-font: Inter, sans-serif;
  --_apps---typography--body-font: Inter, sans-serif;
  --_apps---typography--button-font: Inter, sans-serif;
  --_apps---sizes--radius: 8px;
  --_apps---colors--background: #fff;
  --_apps---colors--foreground: #0d2137;
  --_apps---colors--card: #fff;
  --_apps---colors--card-foreground: #060606;
  --_apps---colors--popover: #f2f2f2;
  --_apps---colors--popover-foreground: #060606;
  --_apps---colors--primary: #e8611a;
  --_apps---colors--primary-foreground: #150a07;
  --_apps---colors--secondary: #ffe7d0;
  --_apps---colors--secondary-foreground: #130b09;
  --_apps---colors--muted: #f8f8f8;
  --_apps---colors--muted-foreground: #7d797a;
  --_apps---colors--accent: #e4e4e4;
  --_apps---colors--accent-foreground: #0d0d0d;
  --_apps---colors--destructive: #d5455f;
  --_apps---colors--border: #d3d1c7;
  --_apps---colors--input: #d6d4ca;
  --_apps---colors--ring: #d57146;
  --_apps---charts--chart-1: #e65f17;
  --_apps---charts--chart-2: #f1916a;
  --_apps---charts--chart-3: #dc4600;
  --_apps---charts--chart-4: #ba4c12;
  --_apps---charts--chart-5: #9c2700;
  --_apps---sidebar--sidebar: #f8f8f8;
  --_apps---sidebar--sidebar-foreground: #060606;
  --_apps---sidebar--sidebar-primary: #e8611a;
  --_apps---sidebar--sidebar-primary-foreground: #150a07;
  --_apps---sidebar--sidebar-accent: #e4e4e4;
  --_apps---sidebar--sidebar-accent-foreground: #0d0d0d;
  --_apps---sidebar--sidebar-border: #d3d1c7;
  --_apps---sidebar--sidebar-ring: #d57146;
  --_apps---colors--background-dark: #030303;
  --_apps---colors--foreground-dark: #f8f8f8;
  --_apps---colors--card-dark: #141414;
  --_apps---colors--card-foreground-dark: #f8f8f8;
  --_apps---colors--popover-dark: #141414;
  --_apps---colors--popover-foreground-dark: #f8f8f8;
  --_apps---colors--primary-dark: #e8611a;
  --_apps---colors--primary-foreground-dark: #150a07;
  --_apps---colors--secondary-dark: #340000;
  --_apps---colors--secondary-foreground-dark: #fff6f3;
  --_apps---colors--muted-dark: #010101;
  --_apps---colors--muted-foreground-dark: #868686;
  --_apps---colors--accent-dark: #292929;
  --_apps---colors--accent-foreground-dark: #f8f8f8;
  --_apps---colors--destructive-dark: #e3526a;
  --_apps---colors--border-dark: #d3d1c71a;
  --_apps---colors--input-dark: #ffffff26;
  --_apps---colors--ring-dark: #dd794e;
  --_apps---charts--chart-1-dark: #e8611a;
  --_apps---charts--chart-2-dark: #ffa37a;
  --_apps---charts--chart-3-dark: #cc3500;
  --_apps---charts--chart-4-dark: #fb8e5f;
  --_apps---charts--chart-5-dark: #ad3800;
  --_apps---sidebar--sidebar-dark: #070707;
  --_apps---sidebar--sidebar-foreground-dark: #f8f8f8;
  --_apps---sidebar--sidebar-primary-dark: #e8611a;
  --_apps---sidebar--sidebar-primary-foreground-dark: #150a07;
  --_apps---sidebar--sidebar-accent-dark: #292929;
  --_apps---sidebar--sidebar-accent-foreground-dark: #f8f8f8;
  --_apps---sidebar--sidebar-border-dark: #ffffff1a;
  --_apps---sidebar--sidebar-ring-dark: #dd794e;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

a {
  text-decoration: underline;
}

.nav-bar {
  background-color: #fff;
  border-bottom: 1px solid #00000014;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 62px;
  padding: 20px 5%;
  display: flex;
  box-shadow: 0 2px 10px #00000014;
}

.nav-logo {
  color: #1a1a1a;
  letter-spacing: -.02em;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.nav-logo-accent {
  color: #e8611a;
  font-weight: 500;
}

.nav-links-wrap {
  grid-column-gap: 32px;
  align-items: center;
  display: flex;
}

.nav-link {
  color: #333;
  cursor: pointer;
  cursor: pointer;
  border-bottom: 2px solid #0000;
  padding-top: 4px;
  padding-bottom: 2px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
}

.nav-link:hover {
  color: #e8611a;
  border-bottom-color: #e8611a;
  transition-property: all;
  transition-duration: .2s;
}

.nav-right {
  grid-column-gap: 16px;
  align-items: center;
  display: flex;
}

.nav-phone {
  color: #fff;
  letter-spacing: .02em;
  white-space: nowrap;
  cursor: pointer;
  background-color: #e8611a;
  border-radius: 6px;
  margin-right: 12px;
  padding: 10px 20px;
  font-family: monospace;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-cta {
  color: #fff;
  letter-spacing: .01em;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  background-color: #e8611a;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.nav-cta:hover {
  background-color: #f3f4f6;
  transform: none;
}

.hero-section {
  grid-column-gap: 52px;
  grid-row-gap: 0px;
  flex-direction: unset;
  width: 100%;
  text-align: unset;
  grid-column-gap: 48px;
  background-color: #0d2137;
  background-image: none;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  width: 100%;
  padding: 72px 40px;
  display: grid;
}

.hero-section.pac-hero {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  grid-template-columns: unset;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.hero-section.hm-hero {
  grid-column-gap: 64px;
  background-image: radial-gradient(circle at 100% 0, #e8611a26, #0000 50%), radial-gradient(circle at 0 100%, #ffffff08, #0000 40%);
  grid-template-columns: 1fr 480px;
  align-items: center;
  padding: 72px 48px;
  display: flex;
}

.hero-section.ab-hero {
  grid-template-columns: 1fr;
  padding-top: 80px;
  padding-bottom: 96px;
}

.hero-left {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.hero-left.hm-hero-left {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-eyebrow {
  grid-column-gap: 8px;
  color: #e8611a;
  letter-spacing: .06em;
  text-transform: uppercase;
  grid-column-gap: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background-color: #e8611a1a;
  border: 1px solid #e8611a66;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.eyebrow-line {
  background-color: #e8611a;
  flex-shrink: 0;
  width: 24px;
  height: 2px;
}

.hero-h1 {
  color: #fff;
  letter-spacing: -.03em;
  letter-spacing: -.02em;
  max-width: 720px;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
}

.hero-h1.hm-h1 {
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-sub {
  color: #fff9;
  max-width: 500px;
  margin-bottom: 32px;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-sub.hm-sub {
  color: #ffffffa6;
  max-width: 460px;
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.65;
}

.hero-btns {
  grid-column-gap: 12px;
  grid-column-gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  display: flex;
}

.btn-orange {
  color: #fff;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: .05em;
  cursor: pointer;
  background-color: #e8611a;
  border-width: 0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 4px 12px #e8611a40;
}

.btn-orange:hover {
  background-color: #cf5517;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px #e8611a80;
}

.btn-orange.inline-a-0 {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-ghost-dark {
  grid-column-gap: 7px;
  color: #e8611a;
  white-space: nowrap;
  cursor: pointer;
  background-color: #0000;
  border: 2px solid #e8611a;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s, border-color .2s;
  display: inline-flex;
}

.btn-ghost-dark:hover {
  background-color: #e8611a1f;
  border-color: #e8611a;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.hero-form {
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  flex: 1;
  gap: 0;
  padding: 24px;
  display: flex;
}

.hero-form.hm-form {
  background-color: #fff;
  border: 1px solid #ffffff1a;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 64px #00000040, 0 4px 16px #0000001a;
}

.form-title {
  color: #0d2137;
  margin-bottom: 3px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.form-subtitle {
  color: #888780;
  margin-bottom: 18px;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.form-label {
  color: #444441;
  margin-bottom: 5px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  display: block;
}

.form-input {
  color: #0d2137;
  background-color: #f5f4f0;
  border: 1px solid #d3d1c7;
  border-radius: 7px;
  width: 100%;
  height: 40px;
  margin-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: ease;
  box-shadow: 0 1px 3px #00000014;
}

.form-input:focus {
  background-color: #f9f8f5;
  border-color: #e8611a;
}

.form-row-2 {
  grid-column-gap: 8px;
  order: 1;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10px;
  display: grid;
}

.form-time-grid {
  grid-column-gap: 6px;
  order: 1;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 12px;
  display: grid;
}

.form-time-opt {
  color: #888780;
  cursor: pointer;
  background-color: #f5f4f0;
  border: 1px solid #d3d1c7;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 36px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  display: flex;
}

.form-time-opt-active {
  color: #7a3010;
  background-color: #fef0e8;
  border-color: #e8611a;
  font-weight: 500;
}

.form-trust-row {
  grid-column-gap: 12px;
  border-top: 1px solid #ebebeb;
  order: 1;
  padding-top: 10px;
  padding-bottom: 12px;
  display: flex;
}

.form-trust-item {
  grid-column-gap: 5px;
  color: #5f5e5a;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 11px;
  display: flex;
}

.form-submit-btn {
  color: #fff;
  letter-spacing: .02em;
  cursor: pointer;
  background-color: #e8611a;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 46px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.stats-bar {
  background-color: #0a1c2e;
  border-top: 1px solid #ffffff0d;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  display: grid;
}

.stat-item {
  text-align: center;
  border-right: 1px solid #ffffff0d;
  padding-top: 20px;
  padding-bottom: 20px;
}

.stat-item-last {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.stat-num {
  color: #fff;
  font-family: monospace;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.stat-num-accent {
  color: #e8611a;
}

.stat-label {
  color: #ffffff59;
  margin-top: 4px;
  font-family: monospace;
  font-size: 11px;
}

.sec-white {
  background-color: #fff;
  width: 100%;
  padding: 64px 48px;
}

.sec-offwhite {
  background-color: #f5f3ef;
  width: 100%;
  padding: 64px 48px;
}

.form-select {
  color: #6b7280;
  cursor: pointer;
  appearance: none;
  background-color: #f5f4f0;
  border: 1px solid #d3d1c7;
  border-radius: 7px;
  width: 100%;
  height: 42px;
  padding-left: 12px;
  padding-right: 32px;
  font-family: Inter, sans-serif;
  font-size: 13px;
}

.form-input-real {
  color: #0d2137;
  background-color: #f5f4f0;
  border: 1px solid #d3d1c7;
  border-radius: 7px;
  width: 100%;
  height: 42px;
  padding-left: 12px;
  padding-right: 12px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  transition-property: all;
  transition-duration: .2s;
}

.form-field-wrap {
  flex-direction: column;
  margin-bottom: 10px;
  display: flex;
}

.form-field-label {
  color: #444441;
  letter-spacing: .01em;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.form-field-label.form-label-first {
  order: -1;
}

.form-field-label.form-order-1 {
  order: 1;
}

.form-block {
  margin-bottom: 0;
}

.form-title-v2 {
  color: #0d2137;
  letter-spacing: -.01em;
  margin-bottom: 2px;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.form-subtitle-v2 {
  color: #9b9990;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.form-submit-v2 {
  color: #fff;
  letter-spacing: .02em;
  cursor: pointer;
  letter-spacing: .02em;
  cursor: pointer;
  background-color: #e8611a;
  border-width: 0;
  border-radius: 8px;
  order: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.form-submit-v2:hover {
  background-color: #d45515;
}

.form-hidden {
  display: none;
}

.sec-eyebrow {
  color: #e8611a;
  letter-spacing: .12em;
  text-transform: uppercase;
  align-items: center;
  column-gap: 8px;
  width: auto;
  margin-bottom: 16px;
  font-family: Inte;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.eyebrow-line-sm {
  background-color: #e8611a;
  flex-shrink: 0;
  width: 24px;
  height: 1px;
  padding-bottom: 0;
  padding-right: 0;
  font-size: 0;
  line-height: 0;
}

.sec-h2 {
  color: #0d2137;
  letter-spacing: -.02em;
  letter-spacing: -.015em;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
}

.sec-h2.inline-h2-0 {
  letter-spacing: -.02em;
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.15;
}

.sec-sub {
  color: #6b7280;
  max-width: 560px;
  margin-bottom: 36px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.sec-offwhite-pad {
  background-color: #f8f9fa;
  background-image: linear-gradient(#f8f9fa, #f0f2f5);
  border-top: 1px solid #e5e7eb;
  padding: 60px 32px 80px;
}

.sec-white-pad {
  background-color: #fff;
  border-radius: 24px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 40px;
  box-shadow: 0 4px 24px #00000014;
}

.sec-orange-pad {
  background-color: #e8611a;
  padding: 56px 48px;
}

.steps-grid {
  grid-column-gap: 16px;
  grid-column-gap: 16px;
  grid-row-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.step-card {
  background-color: var(--color-background-primary);
  border: .5px solid #e2e0da;
  border: .5px solid var(--color-border-tertiary);
  background-color: #fff;
  border: .5px solid #e2e0da;
  border-radius: 10px;
  align-items: flex-start;
  column-gap: 14px;
  padding: 20px;
  transition: all .3s;
  display: flex;
  box-shadow: 0 4px 16px #00000014;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #0000001f;
}

.step-num {
  color: #fff;
  background-color: #e8611a;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.step-title {
  color: var(--color-text-primary);
  margin-bottom: 5px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.step-body {
  color: #6b7280;
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 1.75;
}

.two-col-48 {
  grid-column-gap: 48px;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 0;
  align-items: start;
  display: flex;
}

.who-grid {
  grid-column-gap: 20px;
  grid-column-gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
  display: grid;
}

.who-card-grey {
  background-color: #f5f3ef;
  border: .5px solid #e2e0da;
  border-radius: 12px;
  padding: 24px;
  transition-property: all;
  transition-duration: .3s;
  box-shadow: 0 4px 16px #0000000f;
}

.who-card-grey:hover {
  box-shadow: 0 6px 20px #0000001a;
}

.who-card-green {
  background-color: #eaf3de;
  border: .5px solid #c0dd97;
  border-radius: 12px;
  padding: 24px;
  transition-property: all;
  transition-duration: .2s;
  box-shadow: 0 2px 8px #c0dd9726;
}

.who-icon-wrap {
  background-color: #e8e6e2;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: flex;
}

.who-icon-wrap-green {
  background-color: #d5ecc2;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: flex;
}

.who-card-h {
  color: #0d2137;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.who-card-body {
  color: #6b7280;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.75;
}

.who-stat-num {
  color: #e8611a;
  letter-spacing: -.5px;
  margin-bottom: 2px;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.who-stat-num-green {
  color: #2d9c6e;
  letter-spacing: -.5px;
  margin-bottom: 2px;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.who-stat-label {
  color: #9ca3af;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.who-cta-orange {
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #e8611a;
  border-top: 0 #e2e0da;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  width: auto;
  max-width: fit-content;
  margin-top: 20px;
  padding: 10px 18px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-flex;
}

.who-cta-orange:hover {
  background-color: #d4550f;
}

.who-cta-green {
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #3b6d11;
  border-top: 0 #c0dd97;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  width: auto;
  max-width: fit-content;
  margin-top: 20px;
  padding: 10px 18px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-flex;
}

.who-cta-green:hover {
  background-color: #2d5a0a;
}

.rev-grid {
  grid-column-gap: 14px;
  grid-column-gap: 14px;
  grid-row-gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.rev-card {
  background-color: #fff;
  border: .5px solid #e2e0da;
  border-radius: 10px;
  padding: 18px;
  transition-property: all;
  transition-duration: .2s;
  box-shadow: 0 2px 8px #0000000f;
}

.rev-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0000001a;
}

.rev-stars {
  color: #e8611a;
  margin-bottom: 8px;
  font-size: 12px;
}

.rev-text {
  color: #6b7280;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.75;
}

.rev-author-row {
  align-items: center;
  column-gap: 8px;
  display: flex;
}

.rev-avatar {
  color: #fff;
  background-color: #2d9c6e;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.rev-name {
  color: #0d2137;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.rev-source {
  color: #6b7280;
  font-family: Inter, sans-serif;
  font-size: 11px;
}

.faq-two-col {
  grid-column-gap: 24px;
  grid-column-gap: 24px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  font-size: 14px;
  display: grid;
}

.faq-sec-h2 {
  color: #0d2137;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.faq-card {
  background-color: #fff;
  border: .5px solid #e2e0da;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 18px;
}

.faq-q-row {
  color: #0d2137;
  align-items: flex-start;
  column-gap: 8px;
  margin-bottom: 6px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.faq-icon {
  background-color: #eaf3de;
  border: .5px solid #c0dd97;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-top: 0;
  display: flex;
}

.faq-answer {
  color: #6b7280;
  border-top: 1px solid #f0f4f8;
  padding: 20px 24px 24px 26px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.why-row {
  background-color: #f5f3ef;
  border-radius: 8px;
  align-items: flex-start;
  column-gap: 12px;
  margin-bottom: 10px;
  padding: 14px;
  transition-property: all;
  transition-duration: .3s;
  display: flex;
  box-shadow: 0 2px 8px #0000000d;
}

.why-dot {
  background-color: #2d9c6e;
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 4px;
}

.why-title {
  color: #0d2137;
  margin-bottom: 2px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.why-body {
  color: #6b7280;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.cta-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 32px;
  display: flex;
}

.cta-h {
  color: #fff;
  letter-spacing: -.01em;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.cta-sub {
  color: #ffffffa6;
  margin-top: 6px;
  margin-bottom: 24px;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.cta-btns-row {
  flex-shrink: 0;
  column-gap: 10px;
  display: flex;
}

.btn-white-cta {
  color: #e8611a;
  background-color: #fff;
  border-width: 0;
  border-radius: 8px;
  padding: 13px 24px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition-property: all;
  transition-duration: .2s;
  transition-timing-function: ease;
  box-shadow: 0 2px 8px #0000001a;
}

.btn-white-cta:hover {
  color: #e8611a;
  background-color: #f9f8f5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #e8611a26;
}

.btn-ghost-cta {
  color: #fffc;
  background-color: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 8px;
  padding: 13px 20px;
  font-family: monospace;
  font-size: 13px;
}

.footer-wrap {
  color: #fff;
  background-color: #0f1e2f;
  padding: 60px 5% 40px;
}

.footer-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 36px;
  display: grid;
}

.footer-logo {
  color: #fff;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.footer-desc {
  color: #fff9;
  word-spacing: normal;
  max-width: 240px;
  margin-top: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col-head {
  opacity: .5;
  color: #fff;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.footer-link {
  color: #fff;
  margin-bottom: 7px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition-property: color;
  transition-duration: .2s;
  display: block;
}

.footer-link:hover {
  color: #ff6b35;
}

.footer-bottom {
  border-top: 1px solid #ffffff1a;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 10px;
  padding-top: 24px;
  display: flex;
}

.footer-copy {
  color: #fff6;
  font-family: Inter, sans-serif;
  font-size: 13px;
}

.footer-badges-row {
  column-gap: 7px;
  display: flex;
}

.footer-badge {
  color: #ffffff40;
  border: 1px solid #ffffff14;
  border-radius: 4px;
  padding: 3px 8px;
  font-family: monospace;
  font-size: 10px;
}

.sec-offwhite-pad-eyebrow {
  background-color: #f5f3ef;
  padding: 60px 48px;
}

.sec-white-pad-eyebrow {
  background-color: #fff;
  padding: 60px 48px;
}

.sec-white-pad-eyebrow.ab-how {
  padding: 80px 32px;
}

.form-text-input {
  color: #0d2137;
  background-color: #f5f4f0;
  border: 1px solid #d3d1c7;
  border-radius: 7px;
  outline-style: none;
  width: 100%;
  height: 42px;
  margin-top: 0;
  padding-left: 12px;
  padding-right: 12px;
  font-family: Inter, sans-serif;
  font-size: 13px;
}

.form-text-input:focus {
  background-color: #fff;
  border-color: #e8611a;
}

.loc-strip {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #7a3010;
  letter-spacing: .3px;
  background-color: #e8611a14;
  border-bottom: .5px solid #e8611a33;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 32px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.loc-dot {
  background-color: #e8611a;
  border-radius: 50%;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
}

.inline-svg-0 {
  width: 16px;
  height: 16px;
}

.inline-span-0 {
  font-family: var(--font-mono);
  color: #e8611a;
  font-size: 13px;
}

.trust-bar {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  background-color: #122540;
  border-bottom: 1px solid #ffffff0f;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 14px 32px;
  display: flex;
}

.trust-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #ffffffb3;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.trust-dot {
  background-color: #2d9c6e;
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
}

.trust-sep {
  color: #fff3;
  margin: 0 4px;
}

.steps-grid-1 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 4px;
  display: grid;
}

.cost-band {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #e8611a;
  border-radius: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  display: flex;
}

.cost-label {
  color: #fffc;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 500;
}

.cost-label.inline-div-0 {
  text-align: center;
}

.cost-range {
  color: #fff;
  letter-spacing: -.02em;
  font-size: 30px;
  font-weight: 500;
}

.cost-note {
  color: #ffffffb3;
  margin-top: 4px;
  font-size: 12px;
}

.cost-cta {
  color: #e8611a;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 7px;
  align-items: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
}

.inline-span-0-1, .inline-span-1, .inline-span-2 {
  color: #fff;
  background-color: #ffffff26;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
}

.inline-div-1 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 6px;
  display: flex;
}

.reviews-grid {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 4px;
  display: grid;
}

.faq {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
  display: flex;
}

.cta-section {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #0d2137;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 48px 32px;
  display: flex;
}

.cta-h-1 {
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
}

.cta-sub-1 {
  color: #fff9;
  font-size: 14px;
  line-height: 1.6;
}

.cta-btns {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
  display: flex;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.shop-card-wrapper {
  background-color: #fff;
  border: 1px solid #0000000f;
  border-radius: 16px;
  grid-template-columns: 320px 1fr;
  gap: 0;
  display: grid;
  overflow: hidden;
  box-shadow: 0 4px 20px #00000014;
}

.shop-image-block {
  background-color: #1a3050;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  padding: 40px;
  display: flex;
}

.shop-info-block {
  flex-direction: column;
  gap: 16px;
  padding: 48px;
  display: flex;
}

.shop-badge {
  color: #27500a;
  background-color: #eaf3de;
  border: 1px solid #c0dd97;
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.shop-name {
  color: #0d2137;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 600;
}

.stars {
  color: #e8611a;
  letter-spacing: 2px;
  font-size: 16px;
}

.shop-tags-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  display: flex;
}

.tag {
  color: #4a5568;
  background-color: #f8f9fb;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
}

.review-card {
  background-color: var(--color-background-primary);
  border: .5px solid var(--color-border-tertiary);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px #0000000a;
}

.review-text {
  color: var(--color-text-secondary);
  margin-bottom: 12px;
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
}

.review-avatar {
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.review-name {
  color: #0d2137;
  font-size: 14px;
  font-weight: 600;
}

.review-source {
  color: #718096;
  margin-top: 2px;
  font-size: 12px;
}

.faq-item {
  background-color: var(--color-background-primary);
  border: .5px solid var(--color-border-tertiary);
  border-radius: 8px;
  margin-bottom: 16px;
  transition: all .3s;
  overflow: hidden;
}

.faq-question {
  color: #0d2137;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.shop-tags {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 0;
  display: flex;
}

.step-card-v2 {
  background-color: #fff;
  border: 1px solid #f0f2f5;
  border-radius: 16px;
  padding: 32px;
  transition: all .3s;
  box-shadow: 0 2px 12px #0000000f;
}

.step-num-v2 {
  color: #fff;
  background-color: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  display: flex;
}

.step-title-v2 {
  color: #0d2137;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.step-body-v2 {
  color: #5b6b79;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.steps-grid-v2 {
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  display: grid;
}

.review-card-v2 {
  background-color: #fff;
  border: 1px solid #eef0f3;
  border-radius: 20px;
  flex-direction: column;
  gap: 0;
  padding: 28px;
  display: flex;
  box-shadow: 0 2px 16px #0d213712;
}

.review-card-v2:hover {
  border-color: #e8611a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px #0d21371f;
}

.reviews-grid-v2 {
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  display: grid;
}

.rev-stars-v2 {
  color: #ffb400;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 20px;
}

.rev-text-v2 {
  color: #4a5568;
  margin-bottom: 20px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
}

.rev-name-v2 {
  color: #0d2137;
  font-size: 15px;
  font-weight: 600;
}

.rev-source-v2 {
  color: #718096;
  font-size: 13px;
}

.shop-card-v2 {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  display: grid;
  box-shadow: 0 8px 40px #00000014;
}

.shop-image-container-v2 {
  background-color: #f8f9fa;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  height: 400px;
  min-height: 300px;
  margin-bottom: 32px;
  display: flex;
  overflow: hidden;
}

.shop-info-v2 {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.shop-badge-v2 {
  color: #059669;
  background-color: #ecfdf5;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.shop-name-v2 {
  color: #0d2137;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.shop-rating-v2 {
  align-items: center;
  gap: 8px;
  font-size: 18px;
  display: flex;
}

.shop-amenities-v2 {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.amenity-tag-v2 {
  color: #4b5563;
  background-color: #f3f4f6;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
}

.cost-band-v2 {
  color: #fff;
  text-align: left;
  grid-column-gap: 0;
  grid-row-gap: 0;
  background: linear-gradient(135deg, #0d2137 0%, #0f2d4a 50%, #122540 100%);
  border-radius: 24px;
  flex-direction: column;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: grid;
  overflow: hidden;
  box-shadow: 0 24px 64px #0d213759, 0 4px 16px #0d213733;
}

.cost-label-v2 {
  color: #f8956a;
  letter-spacing: .08em;
  text-transform: uppercase;
  background-color: #e8611a33;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 5px 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.cost-range-v2 {
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
}

.cost-note-v2 {
  color: #ffffffb3;
  margin-bottom: 32px;
  font-size: 15px;
}

.cost-cta-v2 {
  color: #fff;
  letter-spacing: .01em;
  white-space: nowrap;
  background-color: #e8611a;
  border-radius: 100px;
  flex-shrink: 0;
  grid-area: 2 / 1;
  justify-content: center;
  place-self: start;
  align-items: center;
  gap: 6px;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-bottom: 40px;
  margin-left: 48px;
  padding: 13px 24px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s, transform .15s;
  display: inline-flex;
}

.cost-cta-v2:hover {
  background-color: #cf5517;
  transform: translateY(-1px);
}

.faq-v2 {
  flex-direction: column;
  gap: 16px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.faq-item-v2 {
  background-color: #fff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  padding: 0;
  transition: box-shadow .2s, border-color .2s;
  overflow: hidden;
  box-shadow: 0 1px 4px #0d21370d;
}

.faq-item-v2:hover {
  border-color: #e8611a;
  box-shadow: 0 4px 20px #0d21371a;
}

.faq-question-v2 {
  color: #0d2137;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.faq-answer-v2 {
  color: #5b6b79;
  font-size: 16px;
  line-height: 1.8;
}

.placeholder-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #6c757d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.placeholder-icon {
  opacity: .6;
  color: #e67e22;
  width: 64px;
  height: 64px;
}

.placeholder-text {
  color: #adb5bd;
  font-size: 16px;
  font-weight: 500;
}

.shop-placeholder-text {
  color: #adb5bd;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.shop-certification-badge {
  color: #e67e22;
  background-color: #fff8f0;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.shop-name-heading {
  color: #1a1a2e;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.shop-rating {
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.shop-address {
  color: #6c757d;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  display: flex;
}

.shop-services-list {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.shop-service-tag {
  color: #495057;
  background-color: #f1f3f5;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
}

.shop-description {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

.shop-cta-container {
  gap: 12px;
  margin-top: 8px;
  display: flex;
}

.shop-cta-button-primary {
  color: #fff;
  background-color: #e67e22;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.shop-cta-button-secondary {
  color: #1a1a2e;
  background-color: #0000;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.shop-cert-badge {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #e67e22;
  letter-spacing: .5px;
  text-transform: uppercase;
  background-color: #fff8f0;
  border-radius: 100px;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.shop-name-pro {
  color: #1a1a2e;
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.shop-rating-pro {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #495057;
  align-items: center;
  margin-bottom: 16px;
  font-size: 15px;
  display: flex;
}

.shop-stars {
  color: #f59e0b;
}

.shop-address-pro {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #6c757d;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
}

.shop-services-pro {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  display: flex;
}

.shop-service-tag-1 {
  color: #495057;
  background-color: #f1f3f5;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
}

.shop-desc-pro {
  color: #6c757d;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.shop-cta-pro {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  display: flex;
}

.shop-btn-primary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  background-color: #e8611a;
  border-radius: 10px;
  align-items: center;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  box-shadow: 0 4px 14px #e67e224d;
}

.shop-btn-secondary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #1a1a2e;
  background-color: #fff;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  align-items: center;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.who-icon-char-orange {
  color: #e8611a;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.who-icon-char-green {
  color: #2d9c6e;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.pac-rv-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 18px;
  display: block;
}

.pac-rv-quote {
  color: #374151;
  word-spacing: normal;
  letter-spacing: 0;
  flex-grow: 1;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
  display: block;
}

.pac-rv-footer {
  border-top: 1px solid #f3f4f6;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  display: flex;
}

.pac-rv-avatar {
  color: #fff;
  letter-spacing: .5px;
  background: linear-gradient(135deg, #e8611a 0%, #c94e0e 100%);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.pac-rv-info {
  flex-direction: column;
  flex-grow: 1;
  gap: 2px;
  display: flex;
}

.pac-rv-name {
  color: #0d2137;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.pac-rv-source {
  color: #9ca3af;
  letter-spacing: 0;
  word-spacing: normal;
  align-items: center;
  gap: 4px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  display: flex;
}

.pac-faq-q-row {
  color: #0d2137;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.pac-faq-chevron {
  color: #e8611a;
  background-color: #fef3ec;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
}

.pac-faq-answer {
  color: #5b6b79;
  border-top: 1px solid #f3f4f6;
  padding: 12px 24px 22px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  display: none;
}

.pac-cost-left {
  border-right: 1px solid #ffffff14;
  flex-direction: column;
  grid-area: 1 / 1;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 48px 32px;
  display: flex;
  position: relative;
}

.pac-cost-right {
  background: #e8611a0f;
  border-left: 1px solid #e8611a2e;
  flex-direction: column;
  grid-area: auto;
  justify-content: center;
  gap: 12px;
  padding: 52px 48px;
  display: flex;
}

.pac-cost-note {
  color: #ffffff73;
  margin-top: 8px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.pac-cost-section-label {
  color: #fff6;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.pac-cost-repairs-list {
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  display: flex;
}

.pac-cost-repair-tag {
  box-sizing: border-box;
  color: #fff;
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  border-left: 3px solid #e8611a;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 18px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
  display: flex;
}

.pac-cost-repair-tag:hover {
  background: #e8611a1f;
  border-color: #e8611a4d;
  border-left-style: solid;
  border-left-width: 3px;
}

.pac-hero-v2 {
  background-image: linear-gradient(135deg, #0d2137 0%, #1a3a5c 100%);
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.pac-hero-eyebrow-v2 {
  color: #e8611a;
  letter-spacing: .5px;
  background-color: #ffffff1a;
  border-radius: 50px;
  margin-bottom: 24px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.pac-hero-h1-v2 {
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
}

.pac-hero-sub-v2 {
  color: #ffffffd9;
  max-width: 600px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 1.6;
}

.pac-trust-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 60px;
  display: grid;
}

.pac-trust-card {
  color: #0d2137;
  text-align: center;
  background-color: #fffffff2;
  border-radius: 12px;
  padding: 20px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 12px #00000014;
}

.pac-shop-card-v2 {
  background-color: #fff;
  border-radius: 20px;
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
  box-shadow: 0 8px 32px #0000001f;
}

.pac-step-card-v2 {
  background-color: #fff;
  border-top: 3px solid #ffb84d;
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform .3s;
  box-shadow: 0 4px 16px #00000014;
}

.pac-cost-card-v2 {
  background-image: linear-gradient(135deg, #1a3a5c 0%, #0d2137 100%);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px #00000026;
}

.pac-review-card-v2 {
  border-radius: 4px 16px 16px 4px;
  border-radius: @raw< | | > ;
  background-color: #fff;
  border-left: 4px solid #ffb84d;
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 20px #00000014;
}

.pac-faq-item-v2 {
  cursor: pointer;
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 24px 28px;
  transition: box-shadow .3s;
  box-shadow: 0 2px 12px #0000000f;
}

.pac-section-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.pac-trust-wrap {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #fffffff2;
  border-radius: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 16px;
  display: flex;
  box-shadow: 0 4px 20px #00000014;
}

.pac-trust-item {
  color: #1a1a1a;
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.pac-trust-icon {
  background-color: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.pac-trust-divider {
  background-color: #e5e7eb;
  flex-shrink: 0;
  width: 1px;
  height: 20px;
}

.pac-loc-strip {
  background-color: #1a1a2e;
  border-bottom: 1px solid #ffffff1a;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  display: flex;
}

.pac-loc-icon {
  background-color: #ff6b35;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  display: flex;
  position: relative;
}

.pac-loc-icon-inner {
  background-color: #fff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.pac-loc-text {
  color: #fff;
  text-align: center;
  letter-spacing: .3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.pac-loc-separator {
  color: #ff6b35;
  margin-left: 8px;
  margin-right: 8px;
  font-weight: 600;
}

.pac-loc-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.pac-featured-container {
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1.5rem;
  display: flex;
}

.pac-shop-card-modern {
  background-color: #fff;
  border-radius: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  min-width: 400px;
  padding: 2rem;
  display: grid;
  box-shadow: 0 4px 24px #00000014;
}

.pac-shop-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px #0000001f;
}

.pac-shop-image-wrapper {
  background-color: gray;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 400px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pac-shop-content {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.pac-shop-header {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.pac-shop-badge-modern {
  color: #16a34a;
  letter-spacing: .02em;
  background-color: #0000;
  border-radius: 0;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  padding: .25rem 0;
  font-size: .8125rem;
  font-weight: 500;
  display: inline-flex;
}

.pac-shop-title-modern {
  color: #1f2937;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.pac-shop-location {
  color: #090808;
  align-items: center;
  gap: .75rem;
  font-size: 1rem;
  display: flex;
}

.pac-shop-stars-modern {
  color: #fbbf24;
  font-size: 1.25rem;
}

.pac-shop-score {
  color: #1f2937;
  font-weight: 700;
}

.pac-shop-reviews {
  color: #6b7280;
}

.pac-shop-location-modern {
  color: #4b5563;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  display: flex;
}

.pac-shop-services-grid {
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  grid-auto-flow: row;
  gap: .75rem;
  font-size: 8px;
  display: grid;
}

.pac-service-tag-modern {
  color: #374151;
  text-align: left;
  background-color: #0000;
  align-items: center;
  gap: .5rem;
  padding: .25rem 0;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  display: inline-flex;
}

.pac-service-tag-modern:hover {
  cursor: default;
}

.pac-service-tag-modern:before {
  color: #16a34a;
  content: "✓";
  font-weight: 700;
}

.pac-shop-description-modern {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
}

.pac-shop-cta-row {
  gap: 1rem;
  margin-top: 1rem;
  display: flex;
}

.pac-btn-primary-modern {
  color: #e8611a;
  mix-blend-mode: normal;
  background-color: #fff;
  border: 2px solid #e8611a;
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.pac-btn-primary-modern:hover {
  box-shadow: none;
  background-color: #fff7ed;
  transform: translateY(-2px);
}

.pac-btn-secondary-modern {
  color: #fff;
  -webkit-text-stroke-color: #ff5800;
  background-color: #e8611a;
  border: 1px solid #e8611a;
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.pac-btn-secondary-modern:hover {
  background-color: #d45515;
  transform: translateY(-2px);
}

.pac-cost-card {
  background-image: linear-gradient(145deg, #0d2137 0%, #0a1a2e 100%);
  border: 1px solid #e8611a26;
  border-radius: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  display: grid;
  overflow: hidden;
  box-shadow: 0 24px 64px #0006;
}

.pac-cost-header {
  background-color: #0000;
  background-image: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  padding: 52px 48px;
  display: flex;
  position: relative;
}

.pac-cost-price {
  color: #fff;
  letter-spacing: -.02em;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

.pac-cost-label-new {
  color: #ffffffb3;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.pac-cost-grid {
  flex-direction: column;
  grid-template-columns: none;
  gap: 10px;
  margin-top: 4px;
  display: flex;
}

.pac-cost-item {
  color: #ffffffe6;
  background-color: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  transition: all .3s;
}

.pac-cost-label {
  color: #e8611ae6;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.pac-cost-big-price {
  color: #fff;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.05;
}

.pac-cost-note-text {
  color: #ffffff80;
  margin-top: 0;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.pac-cost-divider {
  background: #ffffff14;
  height: 1px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.pac-cost-badge {
  color: #4ab7ffe6;
  background: #4ab7ff1f;
  border: 1px solid #4ab7ff40;
  border-radius: 100px;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  padding: 6px 14px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.pac-cost-repairs-heading {
  color: #ffffff73;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.pac-cost-price-val {
  color: #e8611a;
  white-space: nowrap;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.pac-cost-grid-1 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  margin-top: 4px;
  display: flex;
}

.pac-cost-repair-tag-1 {
  box-sizing: border-box;
  background-color: #ffffff0a;
  border: 1px solid #ffffff14;
  border-left: 3px solid #e8611a;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 18px;
  transition: background .2s;
  display: flex;
}

.pac-cost-tag-name {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.pac-cost-price-val-1 {
  color: #e8611a;
  white-space: nowrap;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.pac-svc-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.pac-svc-wrap {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.pac-svc-eyebrow {
  color: #e8611a;
  letter-spacing: .12em;
  text-transform: uppercase;
  background-color: #e8611a1a;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.pac-svc-heading {
  color: #0d2137;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
}

.pac-svc-subtext {
  color: #0d21378c;
  max-width: 520px;
  margin-top: 0;
  margin-bottom: 52px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.pac-svc-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

.pac-svc-card {
  background-color: #fff;
  border: 1px solid #0d213717;
  border-radius: 16px;
  flex-direction: column;
  padding: 32px 28px 28px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  box-shadow: 0 2px 12px #0d21370f;
}

.pac-svc-section-1 {
  background-color: #f8f9fb;
  padding: 56px 20px;
}

.pac-svc-wrap-1 {
  max-width: 1120px;
  margin: 0 auto;
}

.pac-svc-eyebrow-1 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #e8611a;
  letter-spacing: .12em;
  text-transform: uppercase;
  background-color: #e8611a1a;
  border-radius: 100px;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.pac-svc-heading-1 {
  color: #0d2137;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

.pac-svc-sub {
  color: #0d21378c;
  max-width: 500px;
  margin: 0 0 32px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.pac-svc-grid-1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1fr;
  display: grid;
}

.pac-svc-card-1 {
  background-color: #fff;
  border: 1px solid #0d213714;
  border-radius: 16px;
  flex-direction: column;
  padding: 32px 28px 28px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  box-shadow: 0 2px 12px #0d21370d;
}

.pac-svc-icon {
  background-color: #e8611a1a;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
}

.pac-svc-card-title {
  color: #0d2137;
  margin: 0 0 8px;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.pac-svc-card-desc {
  color: #0d21378c;
  flex: 1;
  margin: 0 0 24px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.pac-svc-btn {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #e8611a;
  letter-spacing: .01em;
  align-items: center;
  margin-top: auto;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.psv2-section {
  background-color: #f9fafb;
  border-top: 1px solid #0d21370f;
  padding: 56px 0;
}

.psv2-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.psv2-header {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.psv2-header-left {
  max-width: 560px;
}

.psv2-pill {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  color: #e8611a;
  letter-spacing: .13em;
  text-transform: uppercase;
  background-color: #e8611a17;
  border-radius: 100px;
  align-items: center;
  margin-bottom: 18px;
  padding: 5px 14px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.psv2-h2 {
  color: #0d2137;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  font-family: Inter, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.12;
}

.psv2-sub {
  color: #0d213785;
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.psv2-header-cta {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  letter-spacing: .01em;
  white-space: nowrap;
  background-color: #e8611a;
  border-radius: 10px;
  flex-shrink: 0;
  align-items: center;
  padding: 14px 28px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-flex;
}

.psv2-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-columns: 1fr;
  display: grid;
}

.psv2-card {
  background-color: #fff;
  border: 1px solid #0d213712;
  border-bottom: 3px solid #0000;
  border-radius: 16px;
  flex-direction: column;
  padding: 26px 22px 22px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px #0d21370d, 0 4px 16px #0d21370a;
}

.psv2-icon-wrap {
  background-color: #e8611a17;
  border-radius: 11px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  transition: background .2s;
  display: flex;
}

.psv2-card-num {
  color: #0d21371f;
  letter-spacing: .08em;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: 28px;
  right: 28px;
}

.psv2-card-title {
  color: #0d2137;
  margin: 0 0 10px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.psv2-card-desc {
  color: #0d21378c;
  flex: 1;
  margin: 0 0 20px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.65;
}

.psv2-card-link {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #e8611a;
  letter-spacing: .01em;
  align-items: center;
  margin-top: auto;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: gap .2s;
  display: inline-flex;
}

.psv3-section {
  background-color: #fff;
  padding: 88px 0;
}

.psv3-wrap {
  background-color: #0000;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.psv3-top {
  margin-bottom: 52px;
}

.psv3-pill {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #e8611a;
  letter-spacing: .13em;
  text-transform: uppercase;
  background-color: #e8611a1a;
  border-radius: 100px;
  align-items: center;
  margin-bottom: 16px;
  padding: 5px 14px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
}

.psv3-h2 {
  color: #0d2137;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  font-family: Inter, sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
}

.psv3-sub {
  color: #0d213785;
  max-width: 540px;
  margin: 0 0 28px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.psv3-cta-top {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  letter-spacing: .01em;
  background-color: #e8611a;
  border-radius: 10px;
  align-items: center;
  padding: 13px 26px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

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

.psv3-card {
  background-color: #fff;
  border: 1.5px solid #0d213717;
  border-radius: 16px;
  flex-direction: column;
  min-height: 0;
  padding: 32px 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  box-shadow: 0 2px 8px #0d21370f;
}

.psv3-ibox {
  background-color: #e8611a1a;
  border-radius: 13px;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  margin-bottom: 20px;
  display: flex;
}

.psv3-num {
  color: #0d213726;
  letter-spacing: .1em;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.psv3-title {
  color: #0d2137;
  margin: 0 0 10px;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.psv3-desc {
  color: #0d21378c;
  margin: 0 0 24px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.psv3-link {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #e8611a;
  letter-spacing: .01em;
  align-items: center;
  margin-top: auto;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.pac-svc-grid-v4 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8px;
  display: grid;
}

.pac-svc-card-v4 {
  background-color: #fff;
  border-top: 0 #e8611a;
  border-left: 3px solid #e8611a59;
  border-radius: 16px;
  flex-direction: column;
  gap: 0;
  height: 100%;
  padding: 28px 24px 24px;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  box-shadow: 0 1px 8px #0000000a;
}

.pac-svc-card-v4:hover {
  border-left-color: #e8611a;
  box-shadow: 0 4px 20px #00000014;
}

.pac-svc-ibox-v4 {
  color: #e8611a;
  stroke: #e8611a;
  fill: none;
  background-color: #e8611a1a;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  margin-bottom: 18px;
  display: flex;
}

.pac-svc-num-v4 {
  color: #0d213733;
  letter-spacing: .1em;
  margin-bottom: 6px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.pac-svc-title-v4 {
  color: #0d2137;
  margin: 0 0 10px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.pac-svc-desc-v4 {
  color: #5b6b79;
  flex-grow: 1;
  margin: 0 0 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.pac-svc-link-v4 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #c44a0a;
  letter-spacing: .01em;
  align-items: center;
  margin-top: auto;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.pac-svc-link-v4:hover {
  color: #a33d08;
  text-decoration: underline;
}

.blg-hero {
  background-color: #0d2137;
  padding: 48px 20px 44px;
}

.blg-hero-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.blg-eyebrow {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.blg-eyebrow-line {
  background-color: #e8611a;
  width: 28px;
  height: 2px;
}

.blg-eyebrow-txt {
  color: #e8611a;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.blg-h1 {
  color: #fff;
  letter-spacing: -.02em;
  max-width: 600px;
  margin: 0 0 14px;
  font-family: Inter, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.blg-sub {
  color: #ffffff8c;
  max-width: 500px;
  margin: 0 0 28px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.blg-filters {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  display: flex;
}

.blg-filter-btn {
  color: #ffffffa6;
  cursor: pointer;
  background-color: #0000;
  border: 1.5px solid #ffffff26;
  border-radius: 100px;
  align-items: center;
  padding: 8px 18px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
  display: inline-flex;
}

.blg-filter-btn.active {
  color: #fff;
  background-color: #e8611a;
  border-color: #e8611a;
}

.blg-body {
  background-color: #f8f9fb;
  padding: 0 20px 56px;
}

.blg-body-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.blg-section-label {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #0d213759;
  letter-spacing: .13em;
  text-transform: uppercase;
  align-items: center;
  padding: 40px 0 24px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.blg-featured-card {
  background-color: #fff;
  border: 1px solid #0d213712;
  border-radius: 16px;
  grid-template-columns: 1fr;
  text-decoration: none;
  transition: box-shadow .2s;
  display: grid;
  overflow: hidden;
  box-shadow: 0 2px 16px #0d21370f;
}

.blg-featured-img {
  background-color: #0d2137;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blg-img-placeholder {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #ffffff4d;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.blg-featured-body {
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  display: flex;
}

.blg-post-tag {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #e8611a;
  letter-spacing: .08em;
  text-transform: uppercase;
  background-color: #e8611a17;
  border-radius: 100px;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 4px 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.blg-featured-title {
  color: #0d2137;
  letter-spacing: -.01em;
  margin: 0 0 14px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.blg-featured-desc {
  color: #0d21378c;
  margin: 0 0 28px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.blg-post-meta {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blg-meta-left {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.blg-meta-tag {
  color: #0d213773;
  background-color: #0d21370d;
  border-radius: 100px;
  padding: 4px 10px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.blg-meta-date {
  color: #0d213766;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.blg-read-link {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #e8611a;
  white-space: nowrap;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.blg-latest-label {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #0d213759;
  letter-spacing: .13em;
  text-transform: uppercase;
  align-items: center;
  padding: 40px 0 24px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.blg-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-columns: 1fr;
  display: grid;
}

.blg-card {
  background-color: #fff;
  border: 1px solid #0d213712;
  border-radius: 14px;
  flex-direction: column;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 8px #0d21370d;
}

.blg-card-img {
  aspect-ratio: 16 / 9;
  background-color: #0d2137;
  flex-shrink: 0;
  min-height: 140px;
  position: relative;
  overflow: hidden;
}

.blg-card-body {
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 18px;
  display: flex;
}

.blg-card-cat {
  color: #0d213766;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.blg-card-title {
  color: #0d2137;
  flex: 1;
  margin: 0 0 8px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.blg-card-excerpt {
  color: #0d213780;
  box-orient: vertical;
  margin: 0 0 14px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
}

.blg-card-footer {
  border-top: 1px solid #0d21370f;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  display: flex;
}

.blg-card-date {
  color: #0d213759;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.blg-card-read {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #e8611a;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.blg-cta-strip {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #0d2137;
  border-radius: 14px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0;
  padding: 20px;
  display: flex;
}

.blg-cta-btn {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  white-space: nowrap;
  background-color: #e8611a;
  border-radius: 10px;
  flex-shrink: 0;
  align-items: center;
  padding: 12px 24px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.blg-grid-b2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-columns: 1fr;
  display: grid;
}

.blg-pagination {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: center;
  align-items: center;
  padding: 48px 0 72px;
  display: flex;
}

.blg-page-btn {
  color: #0d213780;
  border: 1.5px solid #0000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
  display: inline-flex;
}

.blg-page-btn.active {
  color: #fff;
  background-color: #0d2137;
}

.blg-page-dots {
  color: #0d21374d;
  padding: 0 4px;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.blg2-hero {
  background-color: #0d2137;
  padding: 36px 20px 40px;
}

.blg2-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.blg2-eyebrow {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  display: flex;
}

.blg2-eyebrow-bar {
  background-color: #e8611a;
  width: 24px;
  height: 2px;
}

.blg2-eyebrow-txt {
  color: #e8611a;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.blg2-h1 {
  color: #fff;
  letter-spacing: -.03em;
  margin: 0 0 10px;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.08;
}

.blg2-sub {
  color: #ffffff80;
  max-width: 480px;
  margin: 0 0 24px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.blg2-tabs {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  display: flex;
}

.blg2-tab {
  color: #fff9;
  background-color: #0000;
  border: 1.5px solid #ffffff26;
  border-radius: 6px;
  align-items: center;
  padding: 7px 16px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  display: inline-flex;
}

.blg2-tab.is-active {
  color: #fff;
  background-color: #0d2137;
  border-color: #0000;
  font-weight: 600;
}

.blg2-main {
  background-color: #f5f5f3;
  padding: 40px 20px 60px;
}

.blg2-mwrap {
  max-width: 880px;
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 24px;
  position: relative;
}

.blg2-divider {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  padding: 40px 0 24px;
  display: flex;
}

.blg2-divider-txt {
  color: #0d213766;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.blg2-divider-line {
  background-color: #0d213714;
  flex: 1;
  height: 1px;
}

.blg2-feat {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  max-width: 100%;
  height: 420px;
  max-height: 100%;
  transform-style: preserve-3d;
  border-style: none;
  border-width: 1px;
  border-radius: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  text-decoration: none;
  display: grid;
  overflow: hidden;
  box-shadow: 0 1px 3px #0d21370f, 0 8px 24px -4px #0d213714;
}

.blg2-feat:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 4px 8px #0d213714, 0 16px 40px -6px #0d213724;
}

.blg2-feat-img {
  aspect-ratio: auto;
  background-color: #0000;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.blg2-feat-img-ph {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #ffffff40;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.blg2-feat-body {
  grid-row-gap: 16px;
  background-color: #fff;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px;
  display: flex;
}

.blg2-feat-tag {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #e8611a;
  letter-spacing: .05em;
  text-transform: uppercase;
  background-color: #e8611a1a;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-bottom: 0;
  padding: 4px 12px;
  font-family: system-u;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.blg2-feat-title {
  color: #0d2137;
  letter-spacing: -.025em;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.blg2-feat-desc {
  color: #0d21378c;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.blg2-feat-meta {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blg2-feat-meta-l {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
  padding-right: 10px;
  font-size: 12px;
  display: flex;
}

.blg2-feat-cat {
  color: #0d213780;
  background-color: #0d21370d;
  border-radius: 100px;
  padding: 4px 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.blg2-feat-date {
  color: #0d213766;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: 13px;
}

.blg2-read {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #e8611a;
  letter-spacing: -.01em;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition-property: color, gap;
  transition-duration: .2s;
  display: flex;
}

.blg2-grid6 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 0;
  margin-bottom: 0;
  display: grid;
  overflow: hidden;
}

.blg2-card {
  width: 100%;
  height: 100%;
  color: inherit;
  background-color: #fff;
  border: 1px solid #0d213712;
  border-radius: 10px;
  flex-direction: column;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  overflow: hidden;
}

.blg2-card-img {
  aspect-ratio: 16 / 10;
  background-color: #1a2f4a;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.blg2-card-img-ph {
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 80px;
  display: flex;
}

.blg2-card-body {
  flex-direction: column;
  flex-grow: 1;
  padding: 12px 14px 14px;
  display: flex;
}

.blg2-card-tag {
  color: #0d213766;
  letter-spacing: .07em;
  text-transform: uppercase;
  background-color: #0d21370d;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 6px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
}

.blg2-card-title {
  color: #0d2137;
  margin: 0 0 auto;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.blg2-card-foot {
  border-top: 1px solid #0d21370f;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 8px;
  display: flex;
}

.blg2-card-date {
  color: #0d21374d;
  font-family: Inter, sans-serif;
  font-size: 11px;
}

.blg2-card-min {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  color: #e8611a;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.blg2-cta {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0d2137;
  border-radius: 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 32px 0;
  padding: 14px 24px;
  display: flex;
}

.blg2-cta-btn {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  color: #fff;
  white-space: nowrap;
  background-color: #e8611a;
  border-radius: 8px;
  flex-shrink: 0;
  align-items: center;
  padding: 11px 22px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.blg2-grid3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 48px;
  display: flex;
}

.blg2-card3 {
  background-color: #fff;
  border: 1px solid #0d213714;
  border-radius: 10px;
  flex-direction: column;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  overflow: hidden;
}

.blg2-card3-img {
  aspect-ratio: 16 / 9;
  background-color: #1a2f4a;
  min-height: 140px;
  position: relative;
  overflow: hidden;
}

.blg2-card3-img-ph {
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 100px;
  display: flex;
}

.blg2-card3-body {
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
  display: flex;
}

.blg2-card3-tag {
  color: #0d213766;
  letter-spacing: .07em;
  text-transform: uppercase;
  background-color: #0d21370d;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
}

.blg2-card3-title {
  color: #0d2137;
  margin: 0 0 6px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.blg2-card3-excerpt {
  color: #0d213780;
  margin: 0 0 12px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  line-height: 1.55;
}

.blg2-card3-foot {
  border-top: 1px solid #0d21370f;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  display: flex;
}

.blg2-card3-date {
  color: #0d21374d;
  font-family: Inter, sans-serif;
  font-size: 11px;
}

.blg2-card3-min {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  color: #e8611a;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.blg2-pages {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: center;
  align-items: center;
  padding-bottom: 8px;
  display: flex;
}

.blg2-pg {
  color: #0d213773;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
  display: inline-flex;
}

.blg2-pg.is-cur {
  color: #fff;
  background-color: #0d2137;
}

.blg2-pg-dots {
  color: #0d21374d;
  padding: 0 2px;
  font-family: Inter, sans-serif;
  font-size: 13px;
}

.bdet-hero {
  background: linear-gradient(150deg, #0d2137 55%, #163352 100%);
  padding: 60px 24px 72px;
}

.bdet-wrap {
  width: 100%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.bdet-breadcrumb {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  display: flex;
}

.bdet-bc-link {
  color: #ffffff73;
  font-family: Inter, sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: color .15s;
}

.bdet-bc-link:hover {
  color: #e8611a;
}

.bdet-bc-sep {
  color: #fff3;
  font-family: Inter, sans-serif;
  font-size: 13px;
}

.bdet-bc-cur {
  color: #ffffff73;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 340px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  overflow: hidden;
}

.bdet-cat-row {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
  display: flex;
}

.bdet-cat {
  color: #e8611a;
  letter-spacing: .06em;
  background-color: #e8611a26;
  border-radius: 100px;
  padding: 4px 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.bdet-meta-dot {
  color: #ffffff40;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.bdet-date, .bdet-read {
  color: #ffffff73;
  font-family: Inter, sans-serif;
  font-size: 13px;
}

.bdet-h1 {
  color: #fff;
  letter-spacing: -.03em;
  margin: 0 0 18px;
  font-family: Inter, sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.08;
}

.bdet-sub {
  color: #fff9;
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.bdet-body {
  background-color: #fafaf9;
  padding: 0 24px 80px;
}

.bdet-img-wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.bdet-hero-img {
  aspect-ratio: 16 / 6;
  color: #fff3;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #0d2137, #1e3f63);
  border-radius: 0 0 12px 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 13px;
  display: flex;
  overflow: hidden;
}

.bdet-content-wrap {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  padding-top: 56px;
  padding-left: 0;
  padding-right: 0;
}

.bdet-toc {
  background-color: #fff;
  border: 1px solid #0d213714;
  border-left: 3px solid #e8611a;
  border-radius: 0 10px 10px 0;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 18px 22px;
}

.bdet-toc-title {
  color: #0d213759;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.bdet-toc-list {
  grid-column-gap: 6px;
  grid-row-gap: 2px;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.bdet-toc-num {
  color: #e8611a;
  min-width: 22px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
}

.bdet-section-heading {
  color: #0d2137;
  letter-spacing: -.02em;
  margin: 40px 0 12px;
  padding-top: 0;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.bdet-paragraph {
  color: #0d2137b8;
  margin: 0 0 18px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.bdet-callout {
  background-color: #fff;
  border: 1px solid #0d213712;
  border-left: 3px solid #e8611a;
  border-radius: 0 8px 8px 0;
  margin: 4px 0 24px;
  padding: 16px 20px;
}

.bdet-callout-label {
  color: #e8611a;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.bdet-callout-text {
  color: #0d2137;
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.bdet-divider {
  background-color: #0d213714;
  height: 1px;
  margin: 36px 0;
}

.bdet-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
}

.bdet-li {
  grid-column-gap: 12px;
  grid-row-gap: 10px;
  color: #0d2137b8;
  align-items: flex-start;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  display: flex;
}

.bdet-li-dot {
  background-color: #e8611a;
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 8px;
}

.bdet-mid-cta {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0d2137;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 18px 24px;
  display: flex;
}

.bdet-mid-cta-txt-main {
  color: #fff;
  margin-bottom: 3px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.bdet-mid-cta-txt-sub {
  color: #ffffff73;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.bdet-mid-cta-btn {
  color: #fff;
  white-space: nowrap;
  background-color: #e8611a;
  border-radius: 8px;
  flex-shrink: 0;
  padding: 10px 20px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .15s;
  display: inline-flex;
}

.bdet-mid-cta-btn:hover {
  opacity: .88;
}

.bdet-author-bar {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid #0d213714;
  border-bottom: 1px solid #0d213714;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
}

.bdet-author-info {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.bdet-author-avatar {
  color: #ffffff4d;
  background-color: #1a2f4a;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  display: flex;
}

.bdet-author-name {
  color: #0d2137;
  margin-bottom: 2px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.bdet-author-role {
  color: #0d213766;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.bdet-share-row {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.bdet-share-label {
  color: #0d213766;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.bdet-share-btn {
  color: #0d213799;
  background-color: #0d21370d;
  border-radius: 6px;
  padding: 6px 14px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .15s;
  display: inline-flex;
}

.bdet-share-btn:hover {
  background-color: #0d21370a;
}

.bdet-related {
  background-color: #0d2137;
  padding: 52px 24px;
}

.bdet-related-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.bdet-related-eyebrow {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  display: flex;
}

.bdet-related-bar {
  background-color: #e8611a;
  flex-shrink: 0;
  width: 24px;
  height: 2px;
}

.bdet-related-label {
  color: #ffffff80;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.bdet-related-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.bdet-rel-card {
  background-color: #ffffff0d;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  flex-direction: column;
  text-decoration: none;
  transition: background-color .15s;
  display: flex;
  overflow: hidden;
}

.bdet-rel-card:hover {
  background-color: #ffffff14;
}

.bdet-rel-img {
  aspect-ratio: 16 / 9;
  background-color: #1a2f4a;
}

.bdet-rel-body {
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
  display: flex;
}

.bdet-rel-tag {
  color: #e8611a;
  letter-spacing: .06em;
  background-color: #e8611a26;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
}

.bdet-rel-title {
  color: #fff;
  margin-bottom: auto;
  padding-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.bdet-rel-foot {
  border-top: 1px solid #ffffff14;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.bdet-rel-date {
  color: #ffffff4d;
  font-family: Inter, sans-serif;
  font-size: 11px;
}

.bdet-rel-min {
  color: #e8611a;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.bdet-video-section-label {
  color: #0d213759;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.bdet-video-wrap {
  background-color: #0d2137;
  border-radius: 10px;
  height: 0;
  margin: 28px 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.bdet-video-label {
  color: #0d21374d;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.bdet-video-wrap-1 {
  background-color: #0d2137;
  border-radius: 10px;
  width: 100%;
  height: 0;
  margin: 0 0 44px;
  padding-bottom: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.iframe {
  width: 100%;
  height: 100%;
}

.bd-hero {
  background-color: #0d2137;
  padding: 56px 40px 72px;
}

.bd-container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.bd-breadcrumb {
  grid-column-gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.bd-bc-link {
  color: #ffffff6b;
  font-family: Inter, sans-serif;
  font-size: 13px;
  text-decoration: none;
}

.bd-bc-sep {
  color: #ffffff38;
  font-family: Inter, sans-serif;
  font-size: 13px;
}

.bd-bc-cur {
  color: #ffffff6b;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 400px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  overflow: hidden;
}

.bd-meta {
  grid-column-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.bd-cat {
  color: #e8611a;
  letter-spacing: .06em;
  background-color: #e8611a2e;
  border-radius: 100px;
  padding: 4px 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.bd-dot {
  color: #ffffff38;
  font-family: Inter, sans-serif;
}

.bd-date {
  color: #ffffff6b;
  font-family: Inter, sans-serif;
  font-size: 13px;
}

.bd-h1 {
  color: #fff;
  letter-spacing: -.025em;
  margin-top: 0;
  margin-bottom: 18px;
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.bd-sub {
  color: #ffffff8c;
  max-width: 640px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

.bd-img {
  aspect-ratio: 21 / 7;
  color: #ffffff26;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #1a3352;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 400px;
  font-family: Inte;
  font-size: 12px;
  display: flex;
  overflow: clip;
}

.bd-body {
  background-color: #f8f8f6;
  padding: 0 40px 80px;
}

.bd-grid {
  grid-column-gap: 60px;
  grid-template-columns: 220px 1fr;
  align-items: start;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 52px;
  display: grid;
}

.bd-toc {
  background-color: #fff;
  border: 1px solid #0d213714;
  border-left: 3px solid #e8611a;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  align-self: start;
  padding: 18px 20px;
  position: sticky;
  top: 80px;
}

.bd-toc-label {
  color: #0d213759;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.bd-toc-item {
  border-bottom: 1px solid #0d21370d;
  margin-bottom: 4px;
  list-style-type: none;
}

.bd-toc-link {
  grid-column-gap: 8px;
  color: #0d213794;
  grid-column-gap: 8px;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.35;
  text-decoration: none;
  display: flex;
}

.bd-toc-link:hover {
  text-decoration: none;
}

.bd-toc-n {
  color: #e8611a;
  flex-shrink: 0;
  min-width: 20px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.bd-article {
  min-width: 0;
}

.bd-h2 {
  color: #0d2137;
  letter-spacing: -.02em;
  margin: 52px 0 14px;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.bd-p {
  color: #0d2137b3;
  margin-top: 0;
  margin-bottom: 18px;
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  line-height: 1.82;
}

.bd-callout {
  background-color: #e8611a0a;
  border-left: 3px solid #e8611a;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-top: 24px;
  margin-bottom: 28px;
  padding: 16px 20px;
}

.bd-callout-lbl {
  color: #e8611a;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.bd-callout-p {
  color: #0d2137;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.bd-list {
  margin-bottom: 24px;
  padding: 0;
  list-style-type: none;
}

.bd-li {
  grid-column-gap: 12px;
  color: #0d2137b3;
  border-bottom: 1px solid #0d21370d;
  align-items: flex-start;
  padding-top: 7px;
  padding-bottom: 7px;
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  list-style-type: none;
  display: flex;
}

.bd-li-dot {
  background-color: #e8611a;
  border-radius: 50%;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 9px;
}

.bd-hr {
  background-color: #0d213714;
  height: 1px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.bd-video {
  background-color: #0d2137;
  border-radius: 10px;
  width: 100%;
  height: 0;
  margin-top: 28px;
  margin-bottom: 28px;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.bd-cta {
  grid-column-gap: 16px;
  background-color: #0d2137;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: 44px;
  margin-bottom: 44px;
  padding: 18px 24px;
  display: flex;
}

.bd-cta-main {
  color: #fff;
  margin-bottom: 3px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.bd-cta-sub {
  color: #ffffff6b;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.bd-cta-btn {
  color: #fff;
  white-space: nowrap;
  background-color: #e8611a;
  border-radius: 8px;
  flex-shrink: 0;
  padding: 10px 20px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.bd-author {
  grid-column-gap: 16px;
  border-top: 1px solid #0d213714;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 52px;
  padding-top: 24px;
  display: flex;
}

.bd-author-info {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
}

.bd-avatar {
  color: #ffffff80;
  background-color: #1a3352;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  display: flex;
}

.bd-author-name {
  color: #0d2137;
  margin-bottom: 2px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.bd-author-role {
  color: #0d213766;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.bd-share {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.bd-share-btn {
  color: #0d21378c;
  background-color: #0d21370f;
  border-radius: 6px;
  padding: 6px 14px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.bd-related {
  background-color: #0d2137;
  padding: 52px 40px 60px;
}

.bd-related-inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.bd-related-eyebrow {
  grid-column-gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  display: flex;
}

.bd-related-bar {
  background-color: #e8611a;
  flex-shrink: 0;
  width: 24px;
  height: 2px;
}

.bd-related-lbl {
  color: #ffffff73;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.bd-cards {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.bd-card {
  background-color: #ffffff0d;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  flex-direction: column;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  overflow: hidden;
}

.bd-card-img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: #1a3352;
  width: 100%;
  height: 100%;
  max-height: 200px;
  overflow: clip;
}

.bd-card-body {
  flex-direction: column;
  flex-grow: 1;
  padding: 16px 18px 18px;
  display: flex;
}

.bd-card-tag {
  color: #e8611a;
  letter-spacing: .06em;
  background-color: #e8611a26;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
}

.bd-card-title {
  color: #fff;
  flex-grow: 1;
  padding-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.bd-card-foot {
  border-top: 1px solid #ffffff14;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.bd-card-date {
  color: #ffffff4d;
  font-family: Inter, sans-serif;
  font-size: 11px;
}

.bd-card-min {
  color: #e8611a;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.text-block-3 {
  color: #fff;
}

.text-block-4 {
  color: #e8611a;
  font-size: 12px;
  font-style: normal;
}

.bd-toc-label-1 {
  color: #0d213759;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.bd-h2-1 {
  color: #0d2137;
  letter-spacing: -.02em;
  margin: 52px 0 14px;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.bd-p-1 {
  color: #0d2137b3;
  margin: 0 0 18px;
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  line-height: 1.82;
}

.bd-callout-1 {
  background-color: #e8611a0a;
  border-left: 3px solid #e8611a;
  border-radius: 0 8px 8px 0;
  margin: 24px 0 28px;
  padding: 16px 20px;
}

.bd-callout-lbl-1 {
  color: #e8611a;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.bd-callout-p-1 {
  color: #0d2137;
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.bd-list-1 {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.bd-li-1 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #0d2137b3;
  border-bottom: 1px solid #0d21370d;
  align-items: flex-start;
  padding: 7px 0;
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  display: flex;
}

.bd-dot-o {
  background-color: #e8611a;
  border-radius: 50%;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 10px;
}

.bd-hr-1 {
  background-color: #0d213714;
  height: 1px;
  margin: 48px 0;
}

.bd-video-1 {
  background-color: #0d2137;
  border-radius: 10px;
  width: 100%;
  height: 0;
  margin: 0 0 44px;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.bd-cta-1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0d2137;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  margin: 44px 0;
  padding: 18px 24px;
  display: flex;
}

.bd-cta-main-1 {
  color: #fff;
  margin-bottom: 3px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.bd-cta-sub-1 {
  color: #ffffff6b;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.bd-cta-btn-1 {
  color: #fff;
  white-space: nowrap;
  background-color: #e8611a;
  border-radius: 8px;
  flex-shrink: 0;
  padding: 10px 20px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.bd-author-1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid #0d213714;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 52px;
  padding-top: 24px;
  display: flex;
}

.bd-author-info-1 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.bd-avatar-1 {
  color: #ffffff80;
  background-color: #1a3352;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  display: flex;
}

.bd-author-role-1 {
  color: #0d213766;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.bd-share-1 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.bd-share-lbl {
  color: #0d213759;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.bd-share-btn-1 {
  color: #0d21378c;
  background-color: #0d21370f;
  border-radius: 6px;
  padding: 6px 14px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.bd-grid-1 {
  grid-row-gap: 0;
  grid-column-gap: 0;
  grid-template-columns: 1fr;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 36px;
  display: grid;
}

.bd-toc-1 {
  background-color: #fff;
  border: 1px solid #0d213714;
  border-left: 3px solid #e8611a;
  border-radius: 0 10px 10px 0;
  align-self: start;
  margin-bottom: 36px;
  padding: 18px 20px;
  position: static;
  top: 80px;
}

.bd-toc-label-1-2 {
  font-family: unset;
  font-size: unset;
  font-weight: unset;
  letter-spacing: unset;
  text-transform: unset;
  color: unset;
  margin-bottom: 0;
  padding: 0;
  display: block;
}

.bd-toc-n-1 {
  color: #e8611a;
  flex-shrink: 0;
  min-width: 20px;
  padding-right: 12px;
  font-size: 11px;
  font-weight: 700;
  list-style: none;
}

.bd-h2-1-2 {
  color: #0d2137;
  letter-spacing: -.02em;
  margin: 52px 0 14px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.bd-p-1-2 {
  color: #0d2137b3;
  margin: 0 0 18px;
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  line-height: 1.82;
}

.bd-callout-1-2 {
  background-color: #e8611a0a;
  border-left: 3px solid #e8611a;
  border-radius: 0 8px 8px 0;
  margin: 24px 0 28px;
  padding: 16px 20px;
}

.bd-callout-lbl-1-2 {
  color: #e8611a;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.bd-callout-p-1-2 {
  color: #0d2137;
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.bd-list-1-2 {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.bd-li-1-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #0d2137b3;
  border-bottom: 1px solid #0d21370d;
  align-items: flex-start;
  padding: 7px 0;
  font-family: Inter, sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  display: flex;
}

.bd-hr-1-2 {
  background-color: #0d213714;
  height: 1px;
  margin: 48px 0;
}

.bd-video-1-2 {
  background-color: #0d2137;
  border-radius: 10px;
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
}

.bd-summary {
  background-color: #fff;
  border: 1px solid #0d213714;
  border-top: 3px solid #0d2137;
  border-radius: 0 0 10px 10px;
  margin: 44px 0;
  padding: 18px 20px;
}

.bd-summary-label {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #0d213759;
  letter-spacing: .13em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  display: flex;
}

.bd-summary-label-bar {
  background-color: #0d2137;
  width: 16px;
  height: 2px;
}

.bd-summary-title {
  color: #0d2137;
  margin: 0 0 16px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.bd-summary-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.bd-summary-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #0d2137b8;
  align-items: flex-start;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.65;
  display: flex;
}

.bd-summary-dot {
  background-color: #e8611a1f;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  display: flex;
}

.bd-cta-1-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #0d2137;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin: 44px 0;
  padding: 18px 24px;
  display: flex;
}

.bd-cta-main-1-2 {
  color: #fff;
  margin-bottom: 3px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.bd-cta-sub-1-2 {
  color: #ffffff6b;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.bd-cta-btn-1-2 {
  color: #fff;
  white-space: nowrap;
  background-color: #e8611a;
  border-radius: 8px;
  flex-shrink: 0;
  padding: 10px 20px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.bd-author-1-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid #0d213714;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 52px;
  padding-top: 24px;
  display: flex;
}

.bd-author-info-1-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.bd-avatar-1-2 {
  color: #ffffff80;
  background-color: #1a3352;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  display: flex;
}

.bd-author-role-1-2 {
  color: #0d213766;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.bd-share-1-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.bd-share-btn-1-2 {
  color: #0d21378c;
  background-color: #0d21370f;
  border-radius: 6px;
  padding: 6px 14px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.bd-video-iframe {
  border-width: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.toc-label-inner {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  border-bottom: 1.5px solid #e87722;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  display: flex;
}

.toc-icon {
  flex-shrink: 0;
  align-items: center;
  display: flex;
}

.toc-label-text {
  color: #1a2744;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.list-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-decoration: none;
  display: block;
}

.list {
  list-style-type: none;
}

.ab-breadcrumb {
  color: #ffffff8c;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 32px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 400;
  display: flex;
}

.ab-breadcrumb-link {
  color: #ffffff8c;
  text-decoration: none;
}

.ab-why-grid {
  grid-column-gap: 80px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.ab-why-body {
  color: #5b6b79;
  max-width: 520px;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.ab-why-stat {
  align-items: flex-start;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  display: flex;
}

.ab-why-stat-num {
  color: #e8611a;
  letter-spacing: -.04em;
  font-family: Inter, sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.ab-why-stat-symbol {
  color: #e8611a;
  margin-top: 12px;
  margin-left: 4px;
  font-family: Inter, sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
}

.ab-why-stat-desc {
  color: #5b6b79;
  max-width: 320px;
  margin-bottom: 32px;
  font-family: Inte;
  font-size: 15px;
  line-height: 1.6;
  display: block;
}

.ab-why-cards {
  flex-direction: column;
  row-gap: 12px;
  max-width: 520px;
  display: flex;
}

.ab-why-card {
  background-color: #fff;
  border-left: 3px solid #e8611a;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 18px 22px;
  box-shadow: 0 1px 2px #0d21370a;
}

.ab-why-card-num {
  color: #0d2137;
  letter-spacing: -.01em;
  margin-bottom: 4px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.ab-why-card-text {
  color: #5b6b79;
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.ab-how-grid {
  grid-column-gap: 80px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.ab-how-intro {
  color: #5b6b79;
  max-width: 480px;
  margin-bottom: 40px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.ab-how-steps {
  flex-direction: column;
  row-gap: 24px;
  display: flex;
}

.ab-how-step {
  grid-column-gap: 16px;
  grid-template-columns: 36px 1fr;
  align-items: start;
  display: grid;
}

.ab-how-step-num {
  color: #fff;
  background-color: #e8611a;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.ab-how-step-title {
  color: #0d2137;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 4px;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.ab-how-step-text {
  color: #5b6b79;
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.ab-how-card {
  background-color: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  max-width: 480px;
  padding: 32px 36px;
}

.ab-how-card-title {
  color: #0d2137;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.ab-how-card-intro {
  color: #5b6b79;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.ab-how-checklist {
  flex-direction: column;
  row-gap: 12px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}

.ab-how-check-item {
  color: #0d2137;
  align-items: flex-start;
  column-gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
}

.ab-how-check-dot {
  background-color: #e8611a;
  border-radius: 50%;
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 8px;
}

.ab-std-wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.ab-std-intro {
  color: #5b6b79;
  max-width: 720px;
  margin-bottom: 48px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.ab-std-grid {
  grid-column-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.ab-std-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 1px 2px #0d21370a;
}

.ab-std-icon {
  color: #16a34a;
  background-color: #f0fdf4;
  border: 1px solid #dcfce7;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.ab-std-card-title {
  color: #0d2137;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.ab-std-card-text {
  color: #5b6b79;
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.ab-map-sec {
  background-color: #0d2137;
  padding: 80px 32px;
}

.ab-map-grid {
  grid-column-gap: 80px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.ab-map-eyebrow {
  color: #ffffff8c;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.ab-map-h2 {
  color: #fff;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

.ab-map-intro {
  color: #ffffffa6;
  max-width: 480px;
  margin-bottom: 24px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.ab-map-list {
  flex-direction: column;
  row-gap: 10px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}

.ab-map-item {
  color: #ffffffd9;
  align-items: center;
  column-gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  display: flex;
}

.ab-map-dot {
  background-color: #e8611a;
  border-radius: 50%;
  flex: none;
  width: 5px;
  height: 5px;
}

.ab-map-more {
  color: #ffffff8c;
  align-items: center;
  column-gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  display: flex;
}

.ab-map-more-link {
  color: #e8611a;
  text-decoration: none;
}

.ab-map-card {
  background-color: #ffffff08;
  border: 1px solid #ffffff14;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  padding: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ab-map-pin {
  background-color: #e8611a1f;
  border: 1px solid #e8611a66;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  display: flex;
}

.ab-map-pin-dot {
  background-color: #e8611a;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.ab-map-card-title {
  color: #ffffffd9;
  text-align: center;
  letter-spacing: .02em;
  margin-top: 0;
  margin-bottom: 4px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.ab-map-card-sub {
  color: #ffffff73;
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 11px;
}

.ab-cta-wrap {
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.ab-cta-left {
  flex-direction: column;
  row-gap: 6px;
  display: flex;
}

.ab-cta-h2 {
  color: #fff;
  letter-spacing: -.02em;
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.ab-cta-sub {
  color: #ffffffd9;
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.ab-cta-btns {
  flex: none;
  align-items: center;
  column-gap: 12px;
  display: flex;
}

.ab-cta-btn-primary {
  color: #e8611a;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  align-items: center;
  padding: 12px 22px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.ab-cta-btn-outline {
  color: #fff;
  background-color: #0000;
  border: 1px solid #ffffff8c;
  border-radius: 6px;
  align-items: center;
  padding: 12px 22px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.callrail-form-wrap {
  width: 100%;
  max-width: 480px;
}

.callrail-form-wrap-1 {
  background-color: #fff;
  border: 1px solid #ffffff14;
  border-radius: 14px;
  width: 100%;
  max-width: 100%;
  margin: 24px auto 0;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px #00000073, 0 8px 20px -10px #00000040;
}

.cr-style-anchor {
  display: none;
}

.callrail-form-wrap-1-2 {
  z-index: 2;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  background-color: #0000;
  border-style: none;
  border-radius: 16px;
  margin: 24px auto 0;
  padding: 0;
  position: relative;
}

.hero-section-1 {
  align-items: center;
}

.hm-hero {
  justify-content: center;
  align-items: center;
}

.cr-style-v2-anchor.inline-div-0 {
  display: none;
}

.div-block {
  width: 100%;
  height: 100%;
}

.callrail-form-wrap-1-2-3 {
  width: 100%;
  max-width: 100%;
  min-height: 620px;
  margin: 24px auto 0;
  display: block;
  position: relative;
}

.hero-section-1-2 {
  align-items: center;
}

.cr-fill-fix-anchor.inline-div-0 {
  display: none;
}

.callrail-form-wrap-1-2-3-4 {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 760px;
  margin: 24px auto 0;
  display: block;
  position: relative;
}

.hero-section-1-2-3 {
  align-items: center;
}

.cr-height-fix-anchor.inline-div-0 {
  display: none;
}

.cr-wrap {
  background-color: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 100%;
  margin: 24px auto 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -24px #0000008c, 0 16px 32px -16px #00000059, 0 0 0 1px #ffffff0f;
}

.hero-section-1-2-3-4, .hero-section-1-2-3-4-5 {
  align-items: center;
}

.hero-form-box-css-anchor.inline-div-0 {
  display: none;
}

.div {
  width: 100%;
  height: auto;
  padding-bottom: 0;
  padding-right: 0;
}

.iframe-override-anchor.inline-div-0, .hero-form-responsive-anchor.inline-div-0 {
  display: none;
}

.div-block-2 {
  width: 50%;
}

.faq-accordion-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.faq-item-1 {
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  transition: border-color .2s;
  overflow: hidden;
}

.faq-q-trigger {
  color: #1a1a2e;
  letter-spacing: -.01em;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  display: flex;
}

.faq-q-text {
  flex: 1;
  padding-right: 16px;
}

.faq-toggle-icon {
  color: #5a8a5a;
  background-color: #f0f4f0;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  font-weight: 400;
  transition: transform .25s, background .25s;
  display: flex;
}

.faq-a-body {
  padding: 0 24px 20px;
}

.faq-a-text {
  color: #555;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.cf-faq-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.cf-faq-card {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  overflow: hidden;
}

.cf-faq-q {
  color: #1a1a2e;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.cf-faq-icon {
  color: #5a8a5a;
  background-color: #eef3ee;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  display: flex;
}

.cf-faq-a {
  opacity: 0;
  max-height: 0;
  padding: 0 24px;
  overflow: hidden;
}

.cf-faq-a-inner {
  color: #555;
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.65;
}

.faq-wrap-v3 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.faq-details {
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  overflow: hidden;
}

.faq-summary {
  color: #1a1a2e;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  display: flex;
}

.faq-plus {
  color: #5a8a5a;
  background-color: #eef3ee;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  display: flex;
}

.faq-body {
  color: #555;
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.65;
}

.inline-img-0 {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: 400px;
  display: block;
}

.gaq-wrap {
  text-align: center;
  max-width: 70%;
  margin: 60px auto;
  padding: 0 24px;
}

.gaq-badge {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #5a8a5a;
  background-color: #f0f4f0;
  border-radius: 20px;
  align-items: center;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.gaq-h1 {
  color: #1a1a2e;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

.gaq-sub {
  color: #666;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.6;
}

.gaq-form-box {
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px #0000000f;
}

.gaq-trust {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: #888;
  justify-content: center;
  margin-top: 24px;
  font-size: 13px;
  display: flex;
}

.ty-section {
  background-color: #f8f6f3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 80px 24px;
  display: flex;
}

.ty-card {
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 520px;
  padding: 48px 40px;
  display: flex;
  box-shadow: 0 8px 40px #0d213714;
}

.ty-check-circle {
  background-color: #22aa551a;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  display: flex;
}

.ty-heading {
  color: #0d2137;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.ty-subtext {
  color: #0d213799;
  margin-bottom: 32px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.ty-btns {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  display: flex;
}

.ty-btn-primary {
  color: #fff;
  cursor: pointer;
  background-color: #e8611a;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s, transform .15s;
  display: inline-flex;
}

.ty-btn-secondary {
  color: #0d2137;
  cursor: pointer;
  background-color: #0000;
  border: 1.5px solid #0d213726;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s, border-color .2s;
  display: inline-flex;
}

.ty-check-svg {
  color: #2a5;
  width: 36px;
  height: 36px;
}

.ty-steps-row {
  text-align: left;
  gap: 24px;
  width: 100%;
  margin-bottom: 32px;
  display: flex;
}

.ty-step-item {
  text-align: center;
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: 6px;
  display: flex;
}

.ty-step-num {
  color: #e8611a;
  background-color: #e8611a1a;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.ty-step-text {
  color: #0d2137b3;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.ty-divider {
  background-color: #0d213714;
  width: 100%;
  height: 1px;
  margin-bottom: 32px;
}

.nav-cta-secondary {
  color: #e8611a;
  letter-spacing: .01em;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  background-color: #0000;
  border: 2px solid #e8611a;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
}

.nav-cta-secondary:hover {
  background-color: #fff7ed;
}

.collection-item {
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  display: block;
}

.collection-list {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  overflow: hidden;
}

.collection-list-wrapper {
  width: 100%;
  margin-bottom: 0;
  display: block;
  position: relative;
}

.blg2-card-wrapper {
  width: 100%;
  height: 100%;
  display: block;
}

.blg2-latest-grid {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 24px;
  display: grid;
}

.blg2-cta-card {
  color: #fff;
  background-color: #0d2137;
  border-radius: 14px;
  flex-direction: column;
  grid-row: 1 / 3;
  justify-content: space-between;
  width: auto;
  height: auto;
  padding: 32px 28px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blg2-cta-badge {
  color: #e8611a;
  letter-spacing: .05em;
  text-transform: uppercase;
  background-color: #e8611a26;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 20px;
  padding: 4px 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.blg2-cta-heading {
  color: #fff;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.blg2-cta-desc {
  color: #ffffff8c;
  margin-bottom: 24px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

.blg2-cta-call-btn {
  grid-column-gap: 8px;
  color: #fff;
  background-color: #e8611a;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 22px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s, transform .2s;
  display: flex;
}

.blg2-cta-phone {
  grid-column-gap: 6px;
  color: #fff6;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  text-decoration: none;
  display: flex;
}

.blg2-cta-glow {
  opacity: 1;
  background-color: #e8611a14;
  border-radius: 100%;
  width: 120px;
  height: 120px;
  position: absolute;
  top: -40px;
  right: -40px;
}

.flex-block {
  max-height: none;
  display: block;
  overflow: hidden;
}

.collection-list-wrapper-2 {
  display: block;
}

.image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: clip;
}

.callback-section {
  background-color: #f7f5f2;
  justify-content: center;
  width: 100%;
  padding: 64px 24px;
  display: flex;
}

.callback-inner {
  text-align: center;
  width: 100%;
  max-width: 620px;
}

.callback-heading {
  color: #1a1a1a;
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.callback-sub {
  color: #555;
  margin-bottom: 32px;
  font-size: 18px;
}

.callback-form-wrap {
  width: 100%;
  min-height: 200px;
}

.founder-section {
  background-color: #fff;
  padding: 80px 48px;
}

.founder-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

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

.founder-eyebrow {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #e8611a;
  letter-spacing: 2px;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 24px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.founder-eyebrow-line {
  background-color: #e8611a;
  width: 28px;
  height: 2px;
  display: block;
}

.founder-h2 {
  color: #1a2332;
  margin-bottom: 24px;
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.founder-body {
  color: #555;
  margin-bottom: 16px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.founder-image-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.founder-image-placeholder {
  aspect-ratio: 4 / 3;
  background-color: #f0ede8;
  border-radius: 12px;
  width: 100%;
}

.map-dots-container {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.map-dot {
  opacity: .85;
  background-color: #e8611a;
  border-radius: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  width: 6px;
  min-width: 6px;
  max-width: 6px;
  height: 6px;
  min-height: 6px;
  max-height: 6px;
  position: absolute;
}

.map-dot.map-dot-lg.inline-div-0 {
  top: 55%;
  left: 35%;
}

.map-dot.inline-div-1 {
  top: 52%;
  left: 32%;
}

.map-dot.inline-div-2 {
  top: 58%;
  left: 38%;
}

.map-dot.inline-div-3 {
  top: 50%;
  left: 30%;
}

.map-dot.inline-div-4 {
  top: 54%;
  left: 40%;
}

.map-dot.inline-div-5 {
  top: 60%;
  left: 33%;
}

.map-dot.inline-div-6 {
  top: 48%;
  left: 36%;
}

.map-dot.inline-div-7 {
  top: 56%;
  left: 28%;
}

.map-dot.inline-div-8 {
  top: 75%;
  left: 40%;
}

.map-dot.inline-div-9 {
  top: 78%;
  left: 38%;
}

.map-dot.inline-div-10 {
  top: 25%;
  left: 30%;
}

.map-dot.inline-div-11 {
  top: 22%;
  left: 28%;
}

.map-dot.inline-div-12 {
  top: 30%;
  left: 45%;
}

.map-dot.inline-div-13 {
  top: 65%;
  left: 50%;
}

.map-dot.inline-div-14 {
  top: 68%;
  left: 55%;
}

.map-dot-lg {
  opacity: 1;
  width: 10px;
  min-width: 10px;
  max-width: 10px;
  height: 10px;
  min-height: 10px;
  max-height: 10px;
}

.pac-hero-intro {
  border-bottom: 1px solid #0000000f;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.pac-hero-sub {
  color: #3a3a3a;
  max-width: 540px;
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  line-height: 1.6;
}

.pac-trust-line {
  color: #e8611a;
  letter-spacing: .02em;
  text-transform: none;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.svc-trust-wrap {
  margin-bottom: 32px;
}

.svc-pills {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  display: flex;
}

.svc-pill {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #1a2332;
  background-color: #f0ede8;
  border-radius: 100px;
  align-items: center;
  padding: 6px 14px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.svc-pill-dot {
  background-color: #e8611a;
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  min-width: 6px;
  max-width: 6px;
  height: 6px;
  min-height: 6px;
  max-height: 6px;
}

.svc-social-proof {
  color: #777;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.svc-meta-wrap {
  margin-bottom: 28px;
}

.svc-pills-row {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  display: flex;
}

.svc-pill-badge {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #c44a0a;
  letter-spacing: .01em;
  background-color: #e8611a14;
  border-radius: 100px;
  align-items: center;
  padding: 5px 12px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.svc-pill-check {
  color: #e8611a;
  font-size: 12px;
}

.svc-proof-line {
  color: #888;
  letter-spacing: .01em;
  font-family: Inter, sans-serif;
  font-size: 13px;
}

.rv-aggregate {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #555;
  border-top: 1px solid #0000000f;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  display: flex;
}

.rv-agg-stars {
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 16px;
}

.rv-agg-score {
  color: #1a2332;
  font-weight: 700;
}

.rv-agg-count {
  color: #777;
}

.pac-faq-native {
  grid-row-gap: 0;
  grid-column-gap: 0;
  flex-direction: column;
  margin-top: 24px;
  display: flex;
}

.pac-faq-v2-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  margin-top: 24px;
  display: flex;
}

.pac-faq-item-v2-1 {
  box-shadow: none;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  transition: background-color .2s;
}

.pac-faq-q-row-1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #0d2137;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.pac-faq-chevron-1 {
  color: #e8611a;
  background-color: #fef3ec;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: transform .3s;
  display: inline-flex;
}

.pac-faq-answer-1 {
  color: #5b6b79;
  padding: 0 0 22px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  display: none;
  overflow: hidden;
}

.pac-faq-q-text {
  flex: 1;
}

.image-2 {
  min-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.image-3 {
  box-sizing: border-box;
  vertical-align: baseline;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  display: inline-block;
  overflow: clip;
}

.article-text {
  margin-top: 1rem;
}

.video {
  height: 400px;
}

.legal-hero {
  background-color: #1a2332;
  padding: 60px 20px 40px;
}

.legal-hero-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.legal-breadcrumb {
  color: #ffffff80;
  margin-bottom: 20px;
  font-size: 13px;
}

.legal-breadcrumb-link {
  color: #ffffff80;
  text-decoration: none;
}

.legal-eyebrow {
  color: #e8622a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 13px;
}

.legal-h1 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.legal-meta {
  color: #fff9;
  margin: 0;
  font-size: 15px;
}

.legal-body {
  background-color: #fff;
  padding: 40px 20px;
}

.legal-body-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 36px;
  padding-bottom: 36px;
}

.legal-sec-num {
  color: #e8622a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 13px;
}

.legal-h2 {
  color: #1a2332;
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.legal-h3 {
  color: #1a2332;
  margin: 24px 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.legal-h3-bar {
  vertical-align: middle;
  background-color: #e8622a;
  width: 3px;
  height: 16px;
  margin-right: 10px;
  display: inline-block;
}

.legal-p {
  color: #4a5568;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
}

.legal-ul {
  margin: 0 0 16px;
  padding-left: 24px;
}

.legal-li {
  color: #4a5568;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.7;
}

.legal-callout {
  background-color: #fef3cd;
  border-left: 4px solid #e8622a;
  border-radius: 4px;
  margin: 20px 0;
  padding: 16px 20px;
}

.legal-callout-title {
  color: #1a2332;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.legal-callout-text {
  color: #4a5568;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.legal-page-wrap {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 24px 96px;
}

.legal-header {
  border-bottom: 1px solid #e2e2de;
  margin-bottom: 40px;
  padding-bottom: 32px;
}

.legal-section-h {
  color: #1a1a1a;
  border-top: 1px solid #e2e2de;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  font-size: 22px;
  font-weight: 700;
}

.legal-sub-h {
  color: #1a1a1a;
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 600;
}

.legal-list {
  margin-top: 8px;
  margin-bottom: 16px;
  margin-left: 24px;
  padding-left: 0;
}

.legal-caps-block {
  color: #1a1a1a;
  background-color: #f3f3f0;
  border-left: 3px solid #1a56db;
  border-radius: 6px;
  margin-top: 12px;
  margin-bottom: 16px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.7;
}

.legal-contact-card {
  background-color: #fff;
  border: 1px solid #e2e2de;
  border-radius: 8px;
  margin-top: 40px;
  padding: 24px;
}

.legal-page-wrap-1 {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 24px 96px;
}

.legal-h1-1 {
  color: #1a1a1a;
  letter-spacing: -.3px;
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 700;
}

.legal-meta-1 {
  color: #5c5c5c;
  font-size: 13.5px;
}

.legal-section-h-1 {
  color: #1a1a1a;
  border-top: 1px solid #e2e2de;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  font-size: 22px;
  font-weight: 700;
}

.legal-body-1 {
  color: #1a1a1a;
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.75;
}

.legal-list-1 {
  color: #1a1a1a;
  margin: 8px 0 16px 24px;
  padding-left: 0;
  font-size: 15.5px;
  line-height: 1.75;
}

.legal-caps-block-1 {
  color: #1a1a1a;
  background-color: #f3f3f0;
  border-left: 3px solid #1a56db;
  border-radius: 6px;
  margin: 12px 0 16px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.7;
}

.legal-contact-card-1 {
  background-color: #fff;
  border: 1px solid #e2e2de;
  border-radius: 8px;
  margin-top: 40px;
  padding: 24px;
}

.legal-disclaimer {
  color: #5c5c5c;
  margin-top: 32px;
  font-size: 13px;
  font-style: italic;
}

.inline-p-0 {
  margin-top: 12px;
}

.legal-page-wrap-1-2 {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 24px 96px;
}

.legal-h1-1-2 {
  color: #1a1a1a;
  letter-spacing: -.3px;
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 700;
}

.legal-meta-1-2 {
  color: #5c5c5c;
  font-size: 13.5px;
}

.legal-section-h-1-2 {
  color: #1a1a1a;
  border-top: 1px solid #e2e2de;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  font-size: 22px;
  font-weight: 700;
}

.legal-body-1-2 {
  color: #1a1a1a;
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.75;
}

.legal-list-1-2 {
  color: #1a1a1a;
  margin: 8px 0 16px 24px;
  padding-left: 0;
  font-size: 15.5px;
  line-height: 1.75;
}

.legal-contact-card-1-2 {
  background-color: #fff;
  border: 1px solid #e2e2de;
  border-radius: 8px;
  margin-top: 40px;
  padding: 24px;
}

.legal-contact-label {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.inline-p-0-1 {
  color: #5c5c5c;
  margin-top: 12px;
  font-size: 13px;
}

.navbar-logo {
  width: auto;
  max-width: 100%;
  height: 32px;
}

.nav-phone-2 {
  color: #fff;
  letter-spacing: .02em;
  white-space: nowrap;
  cursor: pointer;
  background-color: #e8611a;
  border-radius: 6px;
  margin-right: 12px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.sec-eyebrow-2 {
  color: #e8611a;
  letter-spacing: .12em;
  text-transform: uppercase;
  align-items: center;
  column-gap: 8px;
  width: auto;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.svc-proof-line-2 {
  color: #888;
  letter-spacing: .01em;
  font-size: 13px;
}

.pac-svc-num-v4-2 {
  color: #0d213733;
  letter-spacing: .1em;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
}

.svc-pill-badge-2 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #c44a0a;
  letter-spacing: .01em;
  background-color: #e8611a14;
  border-radius: 100px;
  align-items: center;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.pac-cost-repairs-heading-2 {
  color: #ffffff73;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
}

.pac-cost-price-val-1-2 {
  color: #e8611a;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

.pac-cost-note-text-2 {
  color: #ffffff80;
  margin-top: 0;
  font-size: 13px;
  line-height: 1.6;
}

.cost-cta-v2-2 {
  color: #fff;
  letter-spacing: .01em;
  white-space: nowrap;
  background-color: #e8611a;
  border-radius: 100px;
  flex-shrink: 0;
  grid-area: 2 / 1;
  justify-content: center;
  place-self: start;
  align-items: center;
  gap: 6px;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-bottom: 40px;
  margin-left: 48px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s, transform .15s;
  display: inline-flex;
}

.cost-cta-v2-2:hover {
  background-color: #cf5517;
  transform: translateY(-1px);
}

.pac-cost-tag-name-2 {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.rv-aggregate-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #555;
  border-top: 1px solid #0000000f;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  font-size: 15px;
  display: flex;
}

.pac-rv-source-2 {
  color: #9ca3af;
  letter-spacing: 0;
  word-spacing: normal;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 400;
  display: flex;
}

.pac-rv-name-2 {
  color: #0d2137;
  font-size: 14px;
  font-weight: 600;
}

.pac-rv-avatar-2 {
  color: #fff;
  letter-spacing: .5px;
  background: linear-gradient(135deg, #e8611a 0%, #c94e0e 100%);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.pac-rv-quote-2 {
  color: #374151;
  word-spacing: normal;
  letter-spacing: 0;
  flex-grow: 1;
  margin-bottom: 20px;
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
  display: block;
}

.btn-orange-2 {
  color: #fff;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: .05em;
  cursor: pointer;
  background-color: #e8611a;
  border-width: 0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 4px 12px #e8611a40;
}

.btn-orange-2:hover {
  background-color: #cf5517;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px #e8611a80;
}

.btn-orange-2.inline-a-0 {
  padding: 14px 28px;
  font-size: 15px;
}

.inline-span-0-2 {
  color: #e8611a;
  font-size: 13px;
}

.footer-copy-2 {
  color: #fff6;
  font-size: 13px;
}

.footer-desc-2 {
  color: #fff9;
  word-spacing: normal;
  max-width: 240px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-badge-2 {
  color: #ffffff40;
  border: 1px solid #ffffff14;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 10px;
}

.footer-col-head-2 {
  opacity: .5;
  color: #fff;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
}

.footer-logo-2 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.cf-q5 {
  font-family: inherit;
  display: block;
}

.cf-q5-trust {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
  display: flex;
}

.cf-q5-rating {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.cf-q5-stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 18px;
}

.cf-q5-num {
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 700;
}

.cf-q5-count {
  color: #5f6b66;
  font-size: 15px;
  text-decoration: underline;
}

.cf-q5-promise {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  display: flex;
}

.cf-q5-pill {
  color: #1a1a1a;
  background-color: #eaf3ef;
  border: 1px solid #cfe3da;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.cf-q5-tm {
  margin-top: 8px;
}

.cf-q5-tm-title {
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 700;
}

.cf-q5-grid {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  display: grid;
}

.cf-q5-card {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  background-color: #fff;
  border: 1px solid #e7ebe9;
  border-radius: 14px;
  flex-direction: column;
  padding: 22px;
  display: flex;
  box-shadow: 0 1px 2px #1018280a;
}

.cf-q5-mini {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 16px;
}

.cf-q5-quote {
  color: #1a1a1a;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.cf-q5-cap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.cf-q5-av {
  color: #1f7a5a;
  background-color: #e5efe9;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.cf-q5-who {
  flex-direction: column;
  line-height: 1.3;
  display: flex;
}

.cf-q5b {
  color: #14201b;
  font-family: inherit;
  display: block;
}

.cf-q5b-bar {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #f3f7f5;
  border: 1px solid #e3eae7;
  border-radius: 16px;
  flex-direction: column;
  margin-bottom: 32px;
  padding: 20px 22px;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.cf-q5b-rate {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.cf-q5b-stars {
  color: #f5a623;
  letter-spacing: 3px;
  font-size: 20px;
  line-height: 1;
}

.cf-q5b-score {
  color: #14201b;
  font-size: 18px;
  font-weight: 800;
}

.cf-q5b-reviews {
  color: #5c6b64;
  text-underline-offset: 2px;
  font-size: 15px;
  text-decoration: underline;
}

.cf-q5b-verified {
  color: #1f7a5a;
  letter-spacing: .04em;
  text-transform: uppercase;
  background-color: #e3f1ea;
  border: 1px solid #c5e4d6;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 700;
}

.cf-q5b-reassure {
  color: #2c3a33;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.cf-q5b-tm {
  text-align: center;
  margin-top: 8px;
}

.cf-q5b-eyebrow {
  color: #1f7a5a;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.cf-q5b-title {
  color: #14201b;
  margin: 0 0 28px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.cf-q5b-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  display: grid;
}

.cf-q5b-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border: 1px solid #e3eae7;
  border-top: 3px solid #1f7a5a;
  border-radius: 16px;
  flex-direction: column;
  padding: 24px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 18px #1018280f;
}

.cf-q5b-cardstars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1;
}

.cf-q5b-quote {
  color: #2c3a33;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.cf-q5b-by {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.cf-q5b-avatar {
  color: #fff;
  background-color: #1f7a5a;
  background-image: linear-gradient(135deg, #1f7a5a, #155c43);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
}

.cf-q5b-meta {
  flex-direction: column;
  line-height: 1.35;
  display: flex;
}

.cf-q5c {
  box-sizing: border-box;
  color: #1a1a1a;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: inherit;
  display: block;
}

.cf-q5c-bar {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
}

.cf-q5c-rate {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cf-q5c-stars {
  color: #e8a317;
  letter-spacing: 2px;
  font-size: 17px;
  line-height: 1;
}

.cf-q5c-score {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
}

.cf-q5c-reviews {
  color: #8a8a8a;
  font-size: 14px;
}

.cf-q5c-reassure {
  color: #4a4a4a;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cf-q5c-tm {
  margin-top: 44px;
}

.cf-q5c-head {
  text-align: center;
  margin-bottom: 28px;
}

.cf-q5c-eyebrow {
  color: #8a8a8a;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.cf-q5c-title {
  color: #1a1a1a;
  margin: 0;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
}

.cf-q5c-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  display: grid;
}

.cf-q5c-card {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  flex-direction: column;
  padding: 22px;
  display: flex;
  box-shadow: 0 1px 3px #0000000a;
}

.cf-q5c-cardstars {
  color: #e8a317;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 1;
}

.cf-q5c-quote {
  color: #4a4a4a;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.cf-q5c-by {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.cf-q5c-avatar {
  color: #fff;
  background-color: #1a1a1a;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.cf-q5c-meta {
  flex-direction: column;
  line-height: 1.35;
  display: flex;
}

.cf-rev {
  box-sizing: border-box;
  color: #1a1a1a;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: inherit;
  display: block;
}

.cf-rev-bar {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
}

.cf-rev-rate {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cf-rev-bigstars {
  color: #e8a317;
  letter-spacing: 2px;
  font-size: 17px;
  line-height: 1;
}

.cf-rev-score {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
}

.cf-rev-count {
  color: #8a8a8a;
  font-size: 14px;
}

.cf-rev-reassure {
  color: #4a4a4a;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cf-rev-eyebrow {
  color: #8a8a8a;
  text-align: center;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.cf-rev-title {
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 24px;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
}

.cf-rev-track {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  padding: 6px 4px;
  display: flex;
  overflow-x: hidden;
  -webkit-mask-image: linear-gradient(90deg, #0000, #000 6% 94%, #0000);
  mask-image: linear-gradient(90deg, #0000, #000 6% 94%, #0000);
}

.cf-rev-card {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  flex-direction: column;
  flex: 0 0 300px;
  min-width: 300px;
  padding: 22px;
  display: flex;
  box-shadow: 0 1px 3px #0000000a;
}

.cf-rev-stars {
  color: #e8a317;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 1;
}

.cf-rev-quote {
  color: #4a4a4a;
  text-align: left;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.cf-rev-by {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  align-items: center;
  margin-top: 6px;
  display: flex;
}

.cf-rev-av {
  color: #fff;
  background-color: #1a1a1a;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.cf-rev-name {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.cf-rev-city {
  color: #8a8a8a;
  font-size: 12.5px;
  font-style: normal;
  display: block;
}

.cf-rv2 {
  box-sizing: border-box;
  color: #1a1a1a;
  width: 100%;
  max-width: 1120px;
  margin: 8px auto 56px;
  padding: 0 20px;
  font-family: inherit;
  display: block;
}

.cf-rv2-bar {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  margin: 0 auto 44px;
  display: flex;
}

.cf-rv2-rate {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cf-rv2-stars {
  color: #e8a317;
  letter-spacing: 2px;
  font-size: 20px;
  line-height: 1;
}

.cf-rv2-score {
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 800;
}

.cf-rv2-count {
  color: #8a8a8a;
  font-size: 14px;
}

.cf-rv2-promise {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #4a4a4a;
  background-color: #fff;
  border: 1px solid #eceae4;
  border-radius: 999px;
  align-items: center;
  padding: 10px 18px;
  font-size: 14.5px;
  line-height: 1.4;
  display: inline-flex;
  box-shadow: 0 2px 12px #00000012;
}

.cf-rv2-dot {
  background-color: #1f9d6a;
  border-radius: 50%;
  flex: none;
  width: 9px;
  height: 9px;
  display: inline-block;
}

.cf-rv2-eyebrow {
  color: #8a8a8a;
  text-align: center;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.cf-rv2-title {
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 24px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.25;
}

.cf-rv2-track {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  padding: 6px 4px;
  display: flex;
  overflow-x: hidden;
  -webkit-mask-image: linear-gradient(90deg, #0000, #000 6% 94%, #0000);
  mask-image: linear-gradient(90deg, #0000, #000 6% 94%, #0000);
}

.cf-rv2-card {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  flex-direction: column;
  flex: 0 0 300px;
  min-width: 300px;
  padding: 22px;
  display: flex;
  box-shadow: 0 1px 3px #0000000a;
}

.cf-rv2-cardstars {
  color: #e8a317;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 1;
}

.cf-rv2-quote {
  color: #4a4a4a;
  text-align: left;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.cf-rv2-by {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  align-items: center;
  margin-top: 6px;
  display: flex;
}

.cf-rv2-av {
  color: #fff;
  background-color: #1a1a1a;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.cf-rv2-name {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.cf-rv2-city {
  color: #8a8a8a;
  font-size: 12.5px;
  font-style: normal;
  display: block;
}

@media screen and (max-width: 991px) {
  .nav-bar {
    height: 60px;
    padding: 16px 24px;
  }

  .nav-links-wrap {
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 70%;
    height: calc(100vh - 60px);
    padding: 20px;
    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease;
    display: flex;
    position: fixed;
    top: 60px;
    right: 0;
    transform: translateX(100%);
    box-shadow: 0 4px 12px #0000001a;
  }

  .nav-links-wrap:active {
    display: flex;
    transform: translateX(0%);
  }

  .nav-link {
    border-bottom: 1px solid #00000014;
    padding-top: 12px;
    padding-bottom: 12px;
    display: block;
  }

  .nav-phone {
    display: inline-flex;
  }

  .nav-cta {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 12px;
  }

  .hero-section {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    padding: 56px 24px;
  }

  .hero-section.hm-hero {
    grid-row-gap: 40px;
    flex-direction: column;
    grid-template-columns: 1fr;
    padding: 56px 32px;
  }

  .hero-left.hm-hero-left {
    justify-content: center;
    align-self: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-h1 {
    font-size: 48px;
  }

  .hero-h1.hm-h1 {
    text-align: center;
    font-size: 38px;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-sub.hm-sub {
    text-align: center;
    align-self: center;
    width: 100%;
  }

  .hero-btns {
    grid-row-gap: 10px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .btn-orange {
    text-align: center;
    justify-content: center;
    width: 100%;
    display: flex;
  }

  .btn-ghost-dark {
    justify-content: center;
    width: 100%;
  }

  .hero-form {
    padding: 20px;
  }

  .hero-form.hm-form {
    padding: 24px;
  }

  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar {
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .sec-h2 {
    font-size: 28px;
  }

  .sec-h2.inline-h2-0 {
    font-size: 32px;
    line-height: 1.2;
  }

  .sec-sub {
    font-size: 16px;
  }

  .sec-offwhite-pad {
    padding: 64px 32px;
  }

  .sec-white-pad {
    text-align: left;
    padding: 64px 32px;
  }

  .sec-orange-pad {
    padding: 64px 32px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .two-col-48 {
    grid-row-gap: 32px;
    flex-direction: column;
  }

  .who-grid {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .who-card-h {
    font-size: 15px;
    line-height: 1.4;
  }

  .who-card-body {
    font-size: 12px;
    line-height: 1.55;
  }

  .who-stat-num {
    font-size: 22px;
  }

  .who-stat-label {
    font-size: 11px;
  }

  .rev-grid {
    grid-template-columns: 1fr;
  }

  .faq-two-col {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .faq-card {
    padding: 14px;
  }

  .faq-q-row {
    font-size: 12px;
    line-height: 1.4;
  }

  .faq-icon {
    width: 16px;
    height: 16px;
  }

  .cta-inner {
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-h {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .cta-sub {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .text-block {
    text-align: center;
    object-fit: fill;
    margin: auto;
    display: block;
  }

  .loc-strip {
    padding: 8px 20px;
  }

  .trust-bar {
    grid-row-gap: 0;
    grid-column-gap: 0;
    padding: 12px 20px;
  }

  .trust-item {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    width: 50%;
    padding: 4px 0;
    font-size: 12px;
  }

  .steps-grid-1 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .cost-band {
    padding: 20px;
  }

  .cost-label.inline-div-0 {
    text-align: center;
  }

  .cost-range {
    margin-bottom: 4px;
    font-size: 24px;
  }

  .cost-cta {
    text-align: left;
    width: auto;
    margin-top: 0;
    display: inline-flex;
  }

  .reviews-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 32px 20px;
  }

  .cta-h-1 {
    font-size: 20px;
  }

  .cta-btns {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }

  .steps-grid-v2, .reviews-grid-v2 {
    grid-template-columns: 1fr;
  }

  .shop-card-v2 {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .cost-band-v2 {
    grid-template-columns: 1fr 1fr;
  }

  .cost-range-v2 {
    font-size: 36px;
  }

  .cost-cta-v2 {
    width: auto;
    margin-bottom: 32px;
    margin-left: 32px;
    display: inline-flex;
  }

  .pac-cost-right {
    border-top: 1px solid #e8611a2e;
    border-left: none;
    padding: 36px 32px 40px;
  }

  .pac-hero-v2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .pac-hero-h1-v2 {
    font-size: 48px;
  }

  .pac-hero-sub-v2 {
    font-size: 18px;
  }

  .pac-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pac-step-card-v2 {
    padding: 28px 24px;
  }

  .pac-cost-card-v2 {
    padding: 32px;
  }

  .pac-trust-wrap {
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .pac-loc-strip {
    padding: 10px 16px;
  }

  .pac-loc-text {
    font-size: 13px;
  }

  .pac-shop-card-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .pac-shop-image-wrapper {
    min-height: 300px;
  }

  .pac-shop-title-modern {
    font-size: 1.5rem;
  }

  .pac-cost-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .pac-cost-header {
    flex-direction: column;
    gap: 16px;
    padding: 40px 32px 36px;
  }

  .pac-cost-price {
    font-size: 40px;
  }

  .psv3-wrap {
    padding: 0 28px;
  }

  .psv3-h2 {
    font-size: 32px;
  }

  .psv3-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .pac-svc-grid-v4 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .blg2-h1 {
    font-size: 26px;
  }

  .blg2-feat {
    color: #fff;
    border-radius: 16px;
    grid-template-columns: 1fr;
    display: flex;
    overflow: hidden;
  }

  .blg2-feat-img {
    min-width: 50%;
    max-width: 50%;
  }

  .blg2-grid6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .blg2-cta {
    flex-direction: row;
    align-items: center;
  }

  .blg2-grid3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bdet-hero {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .bdet-h1 {
    font-size: 30px;
  }

  .bdet-sub {
    font-size: 15px;
  }

  .bdet-content-wrap {
    padding-top: 40px;
  }

  .bdet-mid-cta {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bdet-author-bar {
    grid-row-gap: 12px;
    flex-wrap: wrap;
  }

  .bdet-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bd-hero {
    padding: 44px 24px 56px;
  }

  .bd-h1 {
    font-size: 32px;
  }

  .bd-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bd-grid {
    grid-column-gap: 0;
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .bd-toc {
    margin-bottom: 40px;
    position: static;
  }

  .bd-related {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bd-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .bd-toc-n-1 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .ab-why-grid {
    grid-column-gap: 0px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .ab-why-stat-num {
    font-size: 88px;
  }

  .ab-why-stat-symbol {
    margin-top: 10px;
    font-size: 36px;
  }

  .ab-how-grid {
    grid-column-gap: 0px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .ab-std-grid {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .ab-map-grid {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .ab-map-h2 {
    font-size: 30px;
  }

  .ab-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 24px;
  }

  .div-block-2 {
    width: 100%;
  }

  .nav-cta-secondary {
    display: none;
  }

  .div-block-4 {
    width: 100%;
  }

  .pac-hero-intro {
    margin-bottom: 36px;
    padding-bottom: 32px;
  }

  .pac-hero-sub {
    max-width: 100%;
    font-size: 17px;
  }

  .nav-phone-2 {
    display: inline-flex;
  }

  .cost-cta-v2-2 {
    width: auto;
    margin-bottom: 32px;
    margin-left: 32px;
    display: inline-flex;
  }

  .btn-orange-2 {
    text-align: center;
    justify-content: center;
    width: 100%;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .nav-bar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-links-wrap {
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    height: calc(100vh - 60px);
    padding: 20px;
    display: flex;
    position: fixed;
    top: 60px;
    right: 0;
    transform: translateX(100%);
    box-shadow: 0 4px 12px #0000001a;
  }

  .hero-section {
    grid-column-gap: 32px;
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .hero-section.hm-hero {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    padding: 44px 20px;
  }

  .hero-h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .hero-h1.hm-h1 {
    font-size: 36px;
  }

  .hero-sub {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .hero-btns {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 320px;
  }

  .btn-orange {
    text-align: center;
    width: 100%;
  }

  .hero-form.hm-form {
    padding: 20px;
  }

  .form-input {
    height: 36px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .form-trust-row {
    grid-column-gap: 8px;
    grid-row-gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .form-trust-item {
    font-size: 10px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .form-field-wrap {
    margin-bottom: 8px;
  }

  .sec-eyebrow {
    column-gap: 6px;
    margin-bottom: 6px;
    font-size: 10px;
  }

  .eyebrow-line-sm {
    width: 16px;
    height: 1px;
    font-size: 0;
    line-height: 0;
  }

  .sec-h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .sec-h2.inline-h2-0 {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.2;
  }

  .sec-sub {
    font-size: 14px;
  }

  .sec-offwhite-pad {
    padding: 40px 20px;
  }

  .sec-white-pad {
    padding: 32px 20px;
    display: block;
  }

  .sec-orange-pad {
    padding: 40px 20px;
  }

  .steps-grid {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .two-col-48 {
    flex-direction: column;
    display: flex;
  }

  .who-grid {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .who-card-grey, .who-card-green {
    margin-bottom: 0;
  }

  .who-cta-orange {
    margin-top: 12px;
  }

  .rev-grid {
    grid-row-gap: 14px;
    grid-template-columns: 1fr;
  }

  .faq-two-col {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .faq-card {
    margin-bottom: 12px;
  }

  .faq-q-row {
    column-gap: 6px;
    margin-bottom: 4px;
    font-size: 12px;
  }

  .faq-answer {
    font-size: 12px;
    line-height: 1.6;
  }

  .cta-inner {
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-h {
    font-size: 22px;
  }

  .footer-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .sec-white-pad-eyebrow.ab-how {
    padding: 56px 20px;
  }

  .loc-strip {
    text-align: center;
    padding: 6px 16px;
    font-size: 11px;
  }

  .trust-bar {
    gap: 12px;
    padding: 10px 16px;
  }

  .trust-item {
    gap: 6px;
    font-size: 12px;
  }

  .trust-sep {
    display: none;
  }

  .inline-div-1 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .step-card-v2 {
    padding: 20px;
  }

  .steps-grid-v2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card-v2 {
    padding: 20px;
  }

  .reviews-grid-v2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .shop-image-container-v2 {
    height: 220px;
    min-height: 180px;
    margin-bottom: 20px;
  }

  .cost-band-v2 {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .cost-range-v2 {
    font-size: 40px;
  }

  .cost-cta-v2 {
    grid-area: 3 / 1;
    width: auto;
    margin-bottom: 28px;
    margin-left: 24px;
    display: inline-flex;
  }

  .shop-cta-pro {
    flex-direction: column;
    align-items: stretch;
  }

  .pac-faq-q-row {
    padding: 18px;
    font-size: 15px;
  }

  .pac-faq-answer {
    padding-bottom: 18px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }

  .pac-cost-left {
    border-bottom: 1px solid #ffffff14;
    border-right: none;
    padding: 28px 24px 24px;
  }

  .pac-cost-right {
    border-top: 1px solid #e8611a2e;
    border-left: none;
    grid-area: 2 / 1;
    padding: 28px 24px 32px;
  }

  .pac-hero-h1-v2 {
    font-size: 36px;
  }

  .pac-hero-sub-v2 {
    font-size: 16px;
  }

  .pac-trust-grid {
    grid-template-columns: 1fr;
  }

  .pac-trust-wrap {
    border-radius: 12px;
    flex-direction: row;
    gap: 8px;
    padding: 12px 8px;
    box-shadow: 0 2px 12px #0000000f;
  }

  .pac-trust-item {
    flex-shrink: 0;
    justify-content: flex-start;
    gap: 6px;
    width: auto;
    font-size: 11px;
  }

  .pac-trust-icon {
    width: 14px;
    height: 14px;
  }

  .pac-trust-divider {
    display: none;
  }

  .pac-loc-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }

  .pac-loc-text {
    font-size: 12px;
  }

  .pac-service-tag-modern {
    color: #000;
    background-color: #f3f4f600;
  }

  .pac-shop-cta-row {
    flex-direction: column;
  }

  .pac-btn-primary-modern, .pac-btn-secondary-modern {
    justify-content: center;
    width: 100%;
  }

  .pac-cost-card {
    border-radius: 16px;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .pac-cost-header {
    padding: 32px 24px 28px;
  }

  .pac-cost-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pac-cost-big-price {
    font-size: 36px;
  }

  .psv3-section {
    padding: 64px 0;
  }

  .psv3-wrap {
    padding: 0 20px;
  }

  .psv3-h2 {
    font-size: 26px;
  }

  .psv3-sub {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .psv3-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .psv3-card {
    padding: 22px 18px;
  }

  .psv3-ibox {
    border-radius: 11px;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    margin-bottom: 14px;
  }

  .psv3-title {
    font-size: 15px;
  }

  .psv3-desc {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .pac-svc-grid-v4 {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    grid-template-columns: repeat(2, 1fr);
  }

  .pac-svc-card-v4 {
    padding: 24px 20px;
  }

  .pac-svc-ibox-v4 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .pac-svc-title-v4 {
    font-size: 15px;
  }

  .pac-svc-desc-v4 {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .blg2-hero {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .blg2-h1 {
    font-size: 22px;
  }

  .blg2-tabs {
    flex-wrap: wrap;
  }

  .blg2-feat {
    flex-direction: column;
    grid-template-columns: 1fr;
    height: auto;
    display: flex;
  }

  .blg2-feat-img {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 240px;
    max-height: 280px;
  }

  .blg2-feat-body {
    padding: 18px;
  }

  .blg2-grid6 {
    grid-template-columns: 1fr;
  }

  .blg2-cta {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .blg2-grid3 {
    grid-template-columns: 1fr;
  }

  .bdet-hero {
    padding: 28px 16px 36px;
  }

  .bdet-h1 {
    letter-spacing: -.02em;
    font-size: 24px;
  }

  .bdet-sub {
    font-size: 14px;
  }

  .bdet-body {
    padding-bottom: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .bdet-content-wrap {
    padding-top: 28px;
  }

  .bdet-toc {
    padding: 14px 16px;
  }

  .bdet-section-heading {
    font-size: 20px;
  }

  .bdet-paragraph {
    font-size: 14px;
  }

  .bdet-author-bar {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .bdet-related {
    padding: 36px 16px;
  }

  .bdet-related-grid {
    grid-template-columns: 1fr;
  }

  .bd-hero {
    padding: 32px 16px 44px;
  }

  .bd-h1 {
    font-size: 26px;
  }

  .bd-sub {
    font-size: 14px;
  }

  .bd-body {
    padding-bottom: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .bd-h2 {
    font-size: 20px;
  }

  .bd-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .bd-related {
    padding: 40px 16px 48px;
  }

  .bd-cards {
    grid-template-columns: 1fr;
  }

  .bd-toc-n-1 {
    padding-left: 6px;
    padding-right: 6px;
  }

  .ab-why-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .ab-why-stat-num {
    font-size: 72px;
  }

  .ab-why-stat-symbol {
    margin-top: 8px;
    font-size: 30px;
  }

  .ab-why-cards {
    width: 100%;
    max-width: 100%;
  }

  .ab-how-grid {
    grid-row-gap: 40px;
  }

  .ab-how-card {
    max-width: 100%;
    padding: 28px 24px;
  }

  .ab-std-intro {
    margin-bottom: 32px;
  }

  .ab-std-grid {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .ab-map-sec {
    padding: 56px 20px;
  }

  .ab-map-grid {
    grid-row-gap: 32px;
  }

  .ab-map-h2 {
    font-size: 26px;
  }

  .ab-map-card {
    min-height: 280px;
    padding: 32px;
  }

  .ab-cta-h2 {
    font-size: 24px;
  }

  .div-block-2 {
    width: 100%;
  }

  .pac-hero-intro {
    margin-bottom: 28px;
    padding-bottom: 24px;
  }

  .pac-hero-sub {
    max-width: 100%;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .pac-trust-line {
    font-size: 12px;
  }

  .legal-page-wrap-1 {
    padding: 32px 16px 64px;
  }

  .legal-h1-1 {
    font-size: 26px;
  }

  .legal-section-h-1 {
    font-size: 20px;
  }

  .legal-page-wrap-1-2 {
    padding: 32px 16px 64px;
  }

  .legal-h1-1-2 {
    font-size: 26px;
  }

  .legal-section-h-1-2 {
    font-size: 20px;
  }

  .sec-eyebrow-2 {
    column-gap: 6px;
    margin-bottom: 6px;
    font-size: 10px;
  }

  .cost-cta-v2-2 {
    grid-area: 3 / 1;
    width: auto;
    margin-bottom: 28px;
    margin-left: 24px;
    display: inline-flex;
  }

  .btn-orange-2 {
    text-align: center;
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .nav-bar {
    height: 56px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-logo {
    font-size: 16px;
  }

  .nav-phone {
    margin-right: 0;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
  }

  .nav-cta {
    letter-spacing: .03em;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 11px;
  }

  .hero-section {
    grid-column-gap: 20px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .hero-section.hm-hero {
    grid-row-gap: 28px;
    flex-direction: column;
    grid-template-columns: 1fr;
    padding: 40px 16px;
  }

  .hero-eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .hero-h1 {
    letter-spacing: -.02em;
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.15;
  }

  .hero-h1.hm-h1 {
    letter-spacing: -.02em;
    font-size: 28px;
  }

  .hero-sub {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-btns {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    display: flex;
  }

  .btn-orange {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 15px;
  }

  .btn-ghost-dark {
    justify-content: center;
    font-size: 13px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .form-time-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-trust-row {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .form-trust-item {
    font-size: 10px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .stat-num {
    font-size: 28px;
  }

  .sec-eyebrow {
    column-gap: 4px;
    margin-bottom: 4px;
    font-size: 9px;
  }

  .eyebrow-line-sm {
    width: 12px;
    height: 1px;
    font-size: 0;
    line-height: 0;
  }

  .sec-h2 {
    font-size: 26px;
  }

  .sec-h2.inline-h2-0 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.25;
  }

  .sec-offwhite-pad {
    padding: 48px 20px;
  }

  .sec-white-pad {
    padding: 24px 16px;
    display: block;
  }

  .sec-orange-pad {
    padding: 48px 20px;
  }

  .two-col-48 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    display: flex;
  }

  .rev-grid, .faq-two-col {
    grid-template-columns: 1fr;
  }

  .faq-q-row {
    column-gap: 4px;
    font-size: 11px;
  }

  .cta-h {
    font-size: 24px;
  }

  .cta-btns-row {
    grid-column-gap: 23px;
    grid-row-gap: 23px;
    flex-direction: column;
    width: 100%;
  }

  .footer-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sec-white-pad-eyebrow.ab-how {
    padding: 48px 16px;
  }

  .loc-strip {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 10px;
  }

  .trust-bar {
    gap: 6px 12px;
    padding: 8px 16px;
  }

  .trust-item {
    gap: 5px;
    font-size: 11px;
  }

  .trust-sep {
    display: none;
  }

  .cost-label.inline-div-0 {
    text-align: right;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .step-card-v2 {
    padding: 16px;
  }

  .steps-grid-v2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .review-card-v2 {
    padding: 16px;
  }

  .reviews-grid-v2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shop-image-container-v2 {
    height: 200px;
    min-height: 160px;
    margin-bottom: 16px;
  }

  .cost-band-v2 {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .cost-label-v2 {
    text-align: left;
    order: 0;
    justify-content: center;
    align-self: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 10px;
    display: flex;
  }

  .cost-range-v2 {
    margin-bottom: 12px;
    font-size: 26px;
  }

  .cost-cta-v2 {
    grid-area: 3 / 1;
    width: 90%;
    margin-bottom: 24px;
    margin-left: 40px;
    margin-right: 40px;
    display: inline-flex;
  }

  .shop-cert-badge {
    color: #e8611a;
  }

  .shop-name-pro {
    font-size: 21px;
  }

  .shop-cta-pro {
    flex-direction: column;
    align-items: stretch;
  }

  .svg {
    direction: ltr;
  }

  .pac-faq-q-row {
    padding: 16px;
    font-size: 14px;
  }

  .pac-faq-answer {
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
  }

  .pac-cost-left {
    border-bottom: 1px solid #ffffff14;
    border-right: none;
    padding: 24px 20px 20px;
  }

  .pac-cost-right {
    grid-area: 2 / 1;
    padding: 20px;
  }

  .text-block-2 {
    margin-bottom: 16px;
  }

  .pac-trust-wrap {
    border-radius: 10px;
    gap: 6px;
    padding: 10px 6px;
    overflow: auto hidden;
  }

  .pac-trust-item {
    white-space: nowrap;
    font-size: 10px;
  }

  .pac-trust-icon {
    width: 12px;
    height: 12px;
  }

  .pac-shop-card-modern {
    min-width: 100%;
  }

  .pac-shop-image-wrapper {
    width: 99.9999%;
    min-width: auto;
    height: auto;
    min-height: auto;
  }

  .pac-shop-header {
    text-align: left;
  }

  .pac-shop-badge-modern {
    width: fit-content;
  }

  .pac-shop-title-modern {
    font-size: 18px;
  }

  .pac-shop-location {
    align-self: center;
  }

  .pac-shop-reviews {
    text-align: center;
    object-fit: fill;
    flex: 0 auto;
    align-self: center;
    font-size: 10px;
  }

  .pac-shop-location-modern, .pac-cost-label {
    font-size: 10px;
  }

  .pac-cost-big-price {
    font-size: 28px;
  }

  .psv3-section {
    padding: 52px 0;
  }

  .psv3-wrap {
    padding: 0 16px;
  }

  .psv3-h2 {
    font-size: 24px;
  }

  .psv3-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .pac-svc-grid-v4 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr;
  }

  .pac-svc-card-v4 {
    padding: 24px 20px;
  }

  .blg2-feat {
    flex-flow: column;
    height: auto;
  }

  .blg2-feat-img {
    border-radius: 0;
    height: auto;
    min-height: 220px;
  }

  .blg2-feat-body {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .blg2-feat-meta-l {
    padding-right: 20px;
    font-size: 10px;
  }

  .blg2-feat-date {
    font-size: 10px;
  }

  .blg2-read {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    font-size: 14px;
  }

  .blg2-grid3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .bd-card {
    margin-bottom: 20px;
  }

  .bd-card-img {
    max-height: 200px;
  }

  .bd-toc-n-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .ab-why-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .ab-why-stat-num {
    font-size: 60px;
  }

  .ab-why-stat-symbol {
    margin-top: 6px;
    font-size: 26px;
  }

  .ab-how-grid {
    grid-row-gap: 32px;
  }

  .ab-how-card {
    padding: 24px 20px;
  }

  .ab-std-card {
    padding: 22px;
  }

  .ab-map-sec {
    padding: 48px 16px;
  }

  .ab-map-h2 {
    font-size: 24px;
  }

  .ab-map-card {
    min-height: 240px;
    padding: 24px;
  }

  .ab-cta-h2 {
    font-size: 22px;
  }

  .ab-cta-btns {
    flex-direction: column;
    align-items: stretch;
    row-gap: 10px;
    width: 100%;
  }

  .ab-cta-btn-primary, .ab-cta-btn-outline {
    justify-content: center;
  }

  .div {
    width: 100%;
  }

  .div-block-2 {
    flex: 1;
    overflow: clip;
    width: 100% !important;
  }

  .faq-summary {
    width: 100%;
  }

  .gaq-wrap {
    max-width: 100%;
  }

  .gaq-h1 {
    width: 100%;
    font-size: 28px;
  }

  .gaq-form-box {
    width: 100%;
  }

  .ty-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .ty-card {
    padding: 32px 20px;
  }

  .ty-heading {
    font-size: 22px;
  }

  .ty-btns {
    flex-direction: column;
    width: 100%;
  }

  .ty-btn-primary, .ty-btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .ty-steps-row {
    flex-direction: column;
    gap: 16px;
  }

  .div-block-3 {
    display: block;
  }

  .text-span, .text-span-2, .text-span-3 {
    font-size: 10px;
  }

  .collection-list {
    flex-flow: column;
  }

  .flex-block {
    flex-flow: column;
    max-height: none;
    display: flex;
  }

  .image {
    max-height: 250px;
    overflow: clip;
  }

  .founder-grid {
    flex-flow: column;
    display: flex;
  }

  .pac-hero-intro {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .pac-hero-sub {
    max-width: 100%;
    font-size: 15px;
  }

  .div-block-5, .image-2 {
    width: 100%;
  }

  .image-3 {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: 50%;
    overflow: clip;
  }

  .nav-phone-2 {
    margin-right: 0;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
  }

  .div-block-6 {
    display: block;
  }

  .sec-eyebrow-2 {
    column-gap: 4px;
    margin-bottom: 4px;
    font-size: 9px;
  }

  .cost-cta-v2-2 {
    grid-area: 3 / 1;
    width: 90%;
    margin-bottom: 24px;
    margin-left: 40px;
    margin-right: 40px;
    display: inline-flex;
  }

  .btn-orange-2 {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 15px;
  }
}

#w-node-_4bc3c431-1406-c181-42d8-2c4f883cc34b-5d3d60c8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-_413066d7-faf4-249a-e2b2-0852f298d9ad-30f32dfd {
    grid-area: 1 / 1 / 2 / 2;
    align-self: auto;
  }

  #w-node-_06b8de77-2dbe-ccdc-188e-2a4e1f8bcaf3-30f32dfd {
    justify-self: center;
  }

  #w-node-_18575ad6-8180-9324-71c6-623dcb112bb4-5632e984 {
    grid-area: 1 / 1 / 2 / 2;
    align-self: auto;
  }

  #w-node-a78d2a9f-4635-242d-d72e-7124c3214ecb-5632e984 {
    justify-self: center;
  }

  #w-node-_18575ad6-8180-9324-71c6-623dcb112bb4-a15a5eb0 {
    grid-area: 1 / 1 / 2 / 2;
    align-self: auto;
  }

  #w-node-a78d2a9f-4635-242d-d72e-7124c3214ecb-a15a5eb0 {
    justify-self: center;
  }

  #w-node-_18575ad6-8180-9324-71c6-623dcb112bb4-cce6b067 {
    grid-area: 1 / 1 / 2 / 2;
    align-self: auto;
  }

  #w-node-a78d2a9f-4635-242d-d72e-7124c3214ecb-cce6b067 {
    justify-self: center;
  }
}


