@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #0052cc;
  --blue-2: #0b64ea;
  --blue-soft: #eef4ff;
  --navy: #111B42;
  --navy-2: #112253;
  --muted: #657286;
  --line: #dce7f8;
  --orange: #ff4c00;
  --section: #f6f8fd;
  --white: #ffffff;
  --container: 1720px;
  --shadow: 0 24px 60px rgba(18, 48, 104, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter Light", "Inter", "Inter Tight", Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container-figma {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  background: #fff;
  min-height: 134px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
}

.site-header .navbar {
  min-height: 134px;
  width: 100%;
}

.site-logo {
  width: 132px;
  height: 120px;
  object-fit: contain;
}

.nav-gap {
  gap: 42px;
}

.navbar .nav-link {
  color: var(--navy);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  padding: 0;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--orange);
}

body.page-template-page-contact-us .navbar .nav-link[href*="/contact-us"] {
  color: var(--orange);
}

.navbar-toggler {
  border: 0;
  padding: 8px;
  background: transparent;
  box-shadow: none;
}

.navbar-toggler:focus,
.navbar-toggler:focus-visible,
.navbar-toggler:active {
  border: 0;
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  position: relative;
  width: 28px;
  height: 22px;
  background-image: none;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  display: block;
  border-radius: 999px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background: #5f5f5f;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.navbar-toggler-icon::before {
  top: 2px;
  box-shadow: 0 8px 0 #5f5f5f;
}

.navbar-toggler-icon::after {
  top: 18px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 10px;
  transform: rotate(45deg);
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 10px;
  transform: rotate(-45deg);
}

.btn {
  min-height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 25px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover,
.btn-orange:focus {
  background: #e54500;
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 74, 13, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn-phone {
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  border-color: #b7d1ff;
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.12);
}

.btn-white-phone {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 12px 30px rgba(0, 25, 90, 0.18);
}

.hero-section {
  min-height: 880px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.hero-floating-actions {
  position: absolute;
  right: clamp(34px, 5.8vw, 112px);
  top: 72%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  gap: 24px;
}

.hero-floating-action {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(255, 74, 13, 0.22);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-floating-action:hover,
.hero-floating-action:focus {
  background: #e54500;
  color: #fff;
}

.hero-copy {
  position: relative;
  max-width: 719px;
  padding-top: 119px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.eyebrow span {
  width: 36px;
  height: 1px;
  background: var(--blue);
  flex: 0 0 auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-copy h1 {
  font-size: 85px;
  line-height: 90px;
  font-weight: 700;
  margin-bottom: 33px;
  color: var(--navy);
}

.hero-copy p {
  font-size: 22px;
  line-height: 32px;
  color: var(--navy-2);
  margin-bottom: 43px;
}

.license-strip {
  height: 44px;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.strip-track {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 72px;
  white-space: nowrap;
  padding-inline: 28px;
  will-change: transform;
  animation: stripMove 24s linear infinite;
}


.strip-track span {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}

.strip-track img {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
}

.quote-section {
  padding: 100px 0;
  background: #fff;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1040px);
  column-gap: 80px;
  align-items: center;
  min-height: 619px;
  padding: 30px 30px 30px 50px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(8, 29, 58, 0.15);
}

.quote-panel > [class*="col-"] {
  width: auto;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.quote-intro {
  padding: 86px 0;
}

.quote-intro h2,
.section-heading h2,
.tailored-copy h2,
.cta-panel h2 {
  font-size: 64px;
  line-height: 74px;
  font-weight: 700;
  color: var(--navy);
}

.quote-intro h2 {
  max-width: 520px;
  margin-bottom: 24px;
}

.quote-intro p,
.section-heading p,
.tailored-copy > p,
.cta-panel p {
  font-size: 18px;
  line-height: 30px;
  color: var(--muted);
}

.quote-intro p {
  max-width: 520px;
  font-size: 22px;
  line-height: 32px;
}

.quote-form {
  width: 100%;
  max-width: 1040px;
  min-height: 559px;
  padding: 41px 40px 40px;
  background: #f6f8fd;
  border: 1px solid rgba(0, 82, 204, 0.2);
  border-radius: 32px;
  box-shadow: none;
}

.coverage-choice {
  position: relative;
  width: 100%;
  min-height: 96px;
  border: 1px solid #d9e5f6;
  border-radius: 6px;
  background: #fff;
  text-align: left;
  padding: 14px 13px;
  color: var(--navy);
}

.coverage-choice i {
  color: var(--blue);
  font-size: 18px;
  display: block;
  margin-bottom: 9px;
}

.coverage-choice small {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
  border: 1px solid #d4dcea;
  border-radius: 2px;
}

.coverage-choice.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.07);
}

.coverage-choice.active small {
  background: var(--blue);
  border-color: var(--blue);
}

.coverage-choice strong {
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.coverage-choice span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.form-note {
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
  margin: 20px 0 24px;
}

.form-note i {
  color: var(--blue);
  margin-right: 8px;
}

.quote-form label {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--navy);
  margin-bottom: 10px;
}

.quote-form .form-control {
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 17px;
}

.quote-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.16);
}

.submit-quote {
  min-width: 257px;
}

.form-success {
  display: none;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 600;
}

.quote-form.sent .form-success {
  display: block;
}

.gf-quote-form .gform_wrapper,
.gf-quote-form .gform_heading,
.gf-quote-form .gform_body,
.gf-quote-form .gform_footer {
  margin: 0 !important;
}

.gf-quote-form .gform_fields {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 17px !important;
  row-gap: 13px !important;
}

.gf-quote-form .gfield--type-checkbox {
  position: relative;
  grid-column: 1 / -1 !important;
  margin-bottom: 19px !important;
}

.gf-quote-form #field_1_2,
.gf-quote-form #field_1_3,
.gf-quote-form #field_1_4,
.gf-quote-form #field_1_5 {
  grid-column: span 1 !important;
}

.gf-quote-form .gfield--type-checkbox > .gfield_label {
  display: none;
}

.gf-quote-form .gfield_checkbox {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.gf-quote-form .gfield_checkbox .gchoice {
  position: relative;
  min-height: 155px !important;
  border: 2px solid #dde6f3;
  border-radius: 12px;
  background: #fff;
  padding: 20px 20px 21px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  overflow: hidden;
}

.gf-quote-form .gfield_checkbox input {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  opacity: 0 !important;
  cursor: pointer;
  accent-color: var(--blue);
  z-index: 3;
}

.gf-quote-form .gfield_checkbox .gchoice::before {
  content: "";
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: block;
  border-radius: 12px;
  background-color: #eef3ff;
  background-image: url("../image/form-icon-auto.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  margin-bottom: 14px;
}

.gf-quote-form .gfield_checkbox .gchoice:nth-child(2)::before {
  background-image: url("../image/form-icon-home.svg");
}

.gf-quote-form .gfield_checkbox .gchoice:nth-child(3)::before {
  background-image: url("../image/form-icon-commercial.svg");
}

.gf-quote-form .gfield_checkbox .gchoice:nth-child(4)::before {
  background-image: url("../image/form-icon-life.svg");
}

.gf-quote-form .gfield_checkbox .gchoice:has(input:checked) {
  border-color: #0052cc;
  box-shadow: none;
}

.gf-quote-form .gfield_checkbox .gchoice::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  border: 2px solid #bfd0e8;
  border-radius: 6px;
  background: #fff;
  z-index: 1;
}

.gf-quote-form .gfield_checkbox .gchoice:has(input:checked)::after {
  content: "\F26E";
  display: grid;
  place-items: center;
  border-color: #0052cc;
  background: #0052cc;
  color: #fff;
  font-family: "bootstrap-icons";
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.gf-quote-form .gfield_checkbox .gchoice:has(input:focus-visible) {
  outline: 3px solid rgba(0, 82, 204, 0.18);
  outline-offset: 2px;
}

.gf-quote-form .gfield_checkbox label {
  display: block;
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.gf-quote-form .gfield_checkbox label::after {
  display: block;
  margin-top: 4px;
  color: #56637a;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
}

.gf-quote-form .gfield_checkbox .gchoice:nth-child(1) label::after {
  content: "For individuals & families";
}

.gf-quote-form .gfield_checkbox .gchoice:nth-child(2) label::after {
  content: "For homeowners & renters";
}

.gf-quote-form .gfield_checkbox .gchoice:nth-child(3) label::after {
  content: "For business owners";
}

.gf-quote-form .gfield_checkbox .gchoice:nth-child(4) label::after {
  content: "For wealth planning";
}

.gf-quote-form .gfield--type-checkbox::after {
  content: "Choose as many as you like — bundling usually unlocks better options.";
  display: block;
  padding-left: 21px;
  margin-top: 10px;
  color: #56637a;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.gf-quote-form .gfield--type-checkbox::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 16px;
  height: 16px;
  background-image: url("../image/form-helper-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.gf-quote-form .gfield_label {
  display: block;
  font-size: 16px !important;
  line-height: 19px !important;
  color: #111B42;
  margin-bottom: 10px !important;
  font-weight: 400 !important;
}

.gf-quote-form .gfield input[type="text"],
.gf-quote-form .gfield input[type="email"],
.gf-quote-form .gfield input[type="tel"],
.gf-quote-form .gfield .gform-phone__input {
  width: 100% !important;
  height: 52px !important;
  border: 1px solid #E2E8F0;
  border-radius: 12px !important;
  background: #fff;
  color: var(--navy);
  font-size: 15px !important;
  line-height: 18px !important;
  font-weight: 500 !important;
  padding: 16px !important;
  box-shadow: none;
}

.gf-quote-form input::placeholder {
  color: #91a4c2;
  opacity: 1;
}

.gf-quote-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.16);
}

.gf-quote-form .gform_footer {
  display: flex;
  justify-content: center;
  padding: 22px 0 0 !important;
}

.gf-quote-form .submit-quote {
  min-width: 277px;
  min-height: 62px;
  padding: 19px 33px !important;
  border-radius: 100px !important;
  border-color: #ff4c00 !important;
  background: #ff4c00 !important;
  color: #fff !important;
  font-size: 20px !important;
  line-height: 24px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

.gf-quote-form .gform-phone__input-wrapper {
  display: block !important;
}

.gf-quote-form .ginput_country-selector_container,
.gf-quote-form .gform-phone__input-wrapper .gform-field-label--type-sub,
.gf-quote-form .gform-phone__dropdown {
  display: none !important;
}

.gf-quote-form .ginput_phone_container {
  display: block !important;
  width: 100% !important;
}

.quote-processing-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
  animation: quoteOverlayIn 0.25s ease both;
}

.quote-processing-modal {
  width: min(100%, 1180px);
  height: min(815px, calc(100vh - 88px));
  min-height: 560px;
  position: relative;
  overflow: visible;
  padding: clamp(34px, 4vh, 55px) clamp(34px, 4.2vw, 72px) clamp(30px, 3.8vh, 56px);
  border-radius: 27px;
  background-color: #e8edf4;
  background-image: var(
    --quote-popup-bg,
    linear-gradient(120deg, rgba(232, 238, 246, 0.58) 0%, rgba(255, 255, 255, 0.2) 48%, rgba(226, 234, 242, 0.48) 100%),
    radial-gradient(circle at 53% 61%, rgba(255, 255, 255, 0.82) 0 9%, rgba(255, 255, 255, 0) 26%)
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  animation: quoteModalIn 0.32s ease both;
}

.quote-processing-modal::before,
.quote-processing-modal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.quote-processing-modal::before {
  opacity: 0.18;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0) 0 34%, rgba(255, 255, 255, 0.54) 48%, rgba(255, 255, 255, 0) 64%),
    repeating-linear-gradient(23deg, rgba(255, 255, 255, 0.4) 0 2px, rgba(255, 255, 255, 0) 3px 16px);
  mix-blend-mode: screen;
}

.quote-processing-modal::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.18));
}

.quote-processing-modal.has-popup-bg::before,
.quote-processing-modal.has-popup-bg::after {
  display: none;
}

.quote-processing-close {
  width: clamp(58px, 4.4vw, 84px);
  height: clamp(58px, 4.4vw, 84px);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
  transform: translate(34%, -34%);
}

.quote-processing-trigger {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.quote-processing-modal h2 {
  position: relative;
  z-index: 2;
  max-width: 910px;
  margin: 0 auto clamp(12px, 1.5vh, 25px);
  color: var(--navy);
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 64px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.quote-processing-modal p {
  position: relative;
  z-index: 2;
  max-width: 732px;
  margin: 0 auto;
  color: #525f73;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.65;
  font-weight: 400;
}

.quote-processing-scene {
  width: min(100%, 760px);
  height: clamp(250px, 35vh, 372px);
  position: relative;
  z-index: 2;
  margin: clamp(14px, 2vh, 23px) auto 0;
}

.market-icon {
  width: clamp(58px, 4vw, 76px);
  height: clamp(58px, 4vw, 76px);
  position: absolute;
  display: grid;
  place-items: center;
  border: clamp(6px, 0.45vw, 8px) solid #0052cc;
  border-radius: 50%;
  background: #fff;
  color: #4b72ef;
  font-size: clamp(23px, 1.65vw, 31px);
  box-shadow: 0 14px 30px rgba(0, 82, 204, 0.15);
  animation: quoteIconFloat 1.8s ease-in-out infinite;
}

.market-icon img {
  width: 52%;
  height: 52%;
  display: block;
  object-fit: contain;
}

.market-icon img + i {
  display: none;
}

.market-home {
  top: 0;
  left: 31%;
}

.market-commercial {
  top: 0;
  right: 31%;
  animation-delay: 0.18s;
}

.market-auto {
  top: 31%;
  left: 8%;
  animation-delay: 0.36s;
}

.market-life {
  top: 31%;
  right: 8%;
  animation-delay: 0.54s;
}

.quote-magnifier {
  width: clamp(154px, 12.6vw, 235px);
  height: clamp(154px, 12.6vw, 235px);
  position: absolute;
  left: 50%;
  top: 30%;
  display: grid;
  place-items: center;
  color: rgba(32, 32, 32, 0.68);
  font-size: clamp(140px, 11.2vw, 214px);
  line-height: 1;
  transform: translateX(-50%) rotate(-14deg);
  filter: drop-shadow(11px 15px 8px rgba(0, 0, 0, 0.24));
  animation: quoteMagnifyScan 2.2s ease-in-out infinite;
}

.quote-magnifier img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.quote-magnifier img + i {
  display: none;
}

.quote-processing-pill {
  min-width: clamp(210px, 13.8vw, 265px);
  min-height: clamp(46px, 2.85vw, 54px);
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: #ff4c00;
  color: #fff;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.2;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 76, 0, 0.22);
}

@keyframes quoteOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes quoteModalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes quoteIconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes quoteMagnifyScan {
  0%, 100% {
    transform: translateX(-50%) rotate(-14deg) translate(0, 0);
  }
  50% {
    transform: translateX(-50%) rotate(-14deg) translate(20px, -16px);
  }
}

.section-blue {
  background: var(--section);
  position: relative;
  overflow: hidden;
}

.cover-section {
  min-height: 830px;
  padding: 100px 0;
}

.section-wire {
  position: absolute;
  width: 566px;
  height: 486px;
  opacity: 0.36;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.wire-left {
  left: 0;
  top: -10px;
  opacity: 0.2;
  background-image: url("../image/cover-wire-left.png");
}

.wire-right {
  right: 0;
  bottom: -10px;
  opacity: 0.3;
  background-image: url("../image/cover-wire-right.png");
}

.section-heading {
  max-width: 100%;
  margin-bottom: 75px;
  position: relative;
  z-index: 1;
}

.section-heading.wide {
  max-width: 1097px;
}

.section-heading .eyebrow {
  margin-bottom: 22px;
}

.section-heading h2 {
  margin-bottom: 26px;
}

.coverage-cards {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
  position: relative;
  z-index: 1;
}

.coverage-cards .col-md-6 {
  display: flex;
}

.coverage-cards .service-card {
  flex: 1 1 auto;
}

.service-card {
  height: 100%;
  min-height: 404px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 26px;
  padding: 29px 29px 35px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}

.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 18px 40px rgba(0, 52, 130, 0.08);
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eef3ff;
  margin-bottom: 23px;
}

.icon-badge img {
  display: block;
  width: 28px;
  height: 28px;
}

.kicker {
  color: var(--blue);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 3px;
}

.service-card h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 17px;
}

.service-card p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 24px;
}

.service-card a {
  color: var(--orange);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-top: auto;
}

.advantage-section {
  padding: 100px 0;
  background: #fff;
}

.advantage-section .section-heading {
  margin-bottom: 0;
}

.advantage-points {
  gap: 26px 64px;
  margin-top: 40px;
}

.advantage-points span {
  color: var(--navy);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.advantage-points i {
  color: var(--blue);
  margin-right: 12px;
}

.comparison-board {
  position: relative;
  width: 100%;
  aspect-ratio: 1720 / 845;
  container-type: inline-size;
  margin-top: 45px;
  padding: 0;
  background: #fff;
  border: 3px solid var(--blue);
  border-radius: 32px;
  box-shadow: 0 40px 70px rgba(0, 82, 204, 0.2);
  overflow: hidden;
}

.comparison-row {
  position: static;
}

.comparison-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.comparison-label {
  position: absolute;
  left: calc(72 / 1720 * 100cqw);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(9 / 1720 * 100cqw);
  width: calc(260 / 1720 * 100cqw);
  min-height: calc(28 / 1720 * 100cqw);
  padding: calc(6 / 1720 * 100cqw) calc(14 / 1720 * 100cqw);
  border-radius: calc(8 / 1720 * 100cqw);
  background: var(--blue);
  color: #fff;
  font-size: calc(12 / 1720 * 100cqw);
  line-height: calc(16 / 1720 * 100cqw);
  font-weight: 700;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: left top;
}

.comparison-label span {
  color: inherit;
}

.comparison-label b {
  color: inherit;
  font-weight: 700;
}

.comparison-label span::after {
  content: "·";
  margin-left: calc(9 / 1720 * 100cqw);
}

.comparison-label-independent {
  top: calc(442 / 1720 * 100cqw);
}

.comparison-label-captive {
  top: calc(790 / 1720 * 100cqw);
  background: #f6f8fd;
  color: #4f5f73;
  border: calc(2 / 1720 * 100cqw) solid #dce7ff;
}

.comparison-label-captive b {
  color: var(--orange);
}

.comparison-person,
.comparison-brand,
.comparison-agent {
  position: absolute;
  z-index: 3;
  width: calc(220 / 1720 * 100cqw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #4f5f73;
  font-size: calc(24 / 1720 * 100cqw);
  line-height: calc(32 / 1720 * 100cqw);
  font-weight: 700;
  text-align: center;
}

.broker-row .comparison-person {
  left: calc(333 / 1720 * 100cqw);
  top: calc(195 / 1720 * 100cqw);
  transform: translateX(-50%);
}

.broker-row .comparison-brand {
  left: calc(741 / 1720 * 100cqw);
  top: calc(195 / 1720 * 100cqw);
  transform: translateX(-50%);
}

.captive-row .comparison-person {
  left: calc(333 / 1720 * 100cqw);
  top: calc(580 / 1720 * 100cqw);
  transform: translateX(-50%);
}

.captive-row .comparison-agent {
  left: calc(741 / 1720 * 100cqw);
  top: calc(580 / 1720 * 100cqw);
  transform: translateX(-50%);
}

.person-icon {
  width: calc(150 / 1720 * 100cqw);
  height: calc(150 / 1720 * 100cqw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(8 / 1720 * 100cqw);
  border: calc(5 / 1720 * 100cqw) solid #b8ccff;
  border-radius: 50%;
  background: #edf3ff;
  color: var(--blue);
  font-size: calc(70 / 1720 * 100cqw);
  line-height: 1;
}

.person-icon i {
  display: block;
  line-height: 1;
}

.person-icon img {
  width: 52%;
  height: 52%;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  width: calc(150 / 1720 * 100cqw);
  height: calc(150 / 1720 * 100cqw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(8 / 1720 * 100cqw);
  border-radius: 50%;
  background: #0d51b3;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-brand strong {
  color: #2d58df;
  font-size: calc(24 / 1720 * 100cqw);
  line-height: calc(32 / 1720 * 100cqw);
  font-weight: 700;
}

.provider-stack {
  position: absolute;
  top: calc(50 / 1720 * 100cqw);
  left: calc(1100 / 1720 * 100cqw);
  width: calc(407 / 1720 * 100cqw);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: calc(10 / 1720 * 100cqw);
}

.provider-pill {
  position: relative;
  z-index: 2;
  min-height: calc(80 / 1720 * 100cqw);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(12 / 1720 * 100cqw) calc(34 / 1720 * 100cqw);
  border: calc(3 / 1720 * 100cqw) solid #dce7ff;
  border-radius: calc(24 / 1720 * 100cqw);
  background: #f6f8fd;
  color: #3f4f62;
  font-size: calc(24 / 1720 * 100cqw);
  line-height: calc(32 / 1720 * 100cqw);
  font-weight: 700;
  text-align: center;
}

.provider-pill.active {
  border-color: #2855dc;
  background: #2855dc;
  color: #fff;
}

.provider-pill.single {
  position: absolute;
  z-index: 4;
  left: calc(1100 / 1720 * 100cqw);
  top: calc(615 / 1720 * 100cqw);
  width: calc(407 / 1720 * 100cqw);
  min-height: calc(80 / 1720 * 100cqw);
  color: var(--navy);
}

.comparison-divider {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: calc(494 / 1720 * 100cqw);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.comparison-divider::before {
  display: none;
}

.comparison-divider span {
  position: relative;
  z-index: 1;
  width: calc(45 / 1720 * 100cqw);
  height: calc(45 / 1720 * 100cqw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: calc(20 / 1720 * 100cqw);
  line-height: calc(24 / 1720 * 100cqw);
  font-weight: 700;
}

.process-section {
  min-height: 841px;
  padding: 100px 0 68px;
}

.process-section .wire-left {
  width: 376px;
  height: 323px;
  left: 0;
  top: 528px;
  opacity: 0.4;
  background-image: url("../image/how-wire-left.png");
}

.process-section .wire-right {
  width: 376px;
  height: 323px;
  right: 0;
  top: -10px;
  bottom: auto;
  opacity: 0.4;
  background-image: url("../image/how-wire-right.png");
}

.process-section .section-heading {
  max-width: 1052px;
  margin-bottom: 30px;
}

.process-section .section-heading p {
  max-width: 637px;
  margin-inline: auto;
}

.process-line {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1721 / 450;
  min-height: 0;
  margin-top: 0;
  container-type: inline-size;
}

.process-line::before {
  content: "";
  position: absolute;
  left: calc(1 / 1721 * 100cqw);
  right: 0;
  top: calc(224 / 1721 * 100cqw);
  height: calc(3 / 1721 * 100cqw);
  background: var(--blue);
  border-radius: 999px;
}

.step-card {
  width: calc(380 / 1721 * 100cqw);
  min-height: calc(163 / 1721 * 100cqw);
  position: absolute;
  background: #fff;
  border-radius: calc(10 / 1721 * 100cqw);
  box-shadow: 0 18px 42px rgba(18, 48, 104, 0.12);
  padding: calc(28 / 1721 * 100cqw);
}

.step-card h3 {
  padding-right: calc(48 / 1721 * 100cqw);
  font-size: calc(24 / 1721 * 100cqw);
  line-height: calc(32 / 1721 * 100cqw);
  font-weight: 700;
  margin-bottom: calc(10 / 1721 * 100cqw);
}

.step-card p {
  color: var(--muted);
  font-size: calc(16 / 1721 * 100cqw);
  line-height: calc(26 / 1721 * 100cqw);
  margin: 0;
}

.step-card span {
  position: absolute;
  top: calc(40 / 1721 * 100cqw);
  right: calc(28 / 1721 * 100cqw);
  color: var(--blue);
  font-size: calc(20 / 1721 * 100cqw);
  line-height: calc(24 / 1721 * 100cqw);
  font-weight: 600;
}

.step-one {
  left: 0;
  top: calc(255 / 1721 * 100cqw);
}

.step-two {
  left: calc(447 / 1721 * 100cqw);
  top: 0;
  min-height: calc(195 / 1721 * 100cqw);
}

.step-three {
  left: calc(894 / 1721 * 100cqw);
  top: calc(255 / 1721 * 100cqw);
  min-height: calc(195 / 1721 * 100cqw);
}

.step-four {
  left: calc(1341 / 1721 * 100cqw);
  top: 0;
  min-height: calc(195 / 1721 * 100cqw);
}

.process-node {
  width: calc(72 / 1721 * 100cqw);
  height: calc(72 / 1721 * 100cqw);
  position: absolute;
  background: transparent;
}

.process-node::after {
  content: "";
  position: absolute;
  width: calc(20 / 1721 * 100cqw);
  height: calc(20 / 1721 * 100cqw);
  border-radius: 50%;
  background: var(--blue);
  border: calc(3 / 1721 * 100cqw) solid #fff;
}

.process-node img {
  display: block;
  width: calc(72 / 1721 * 100cqw);
  height: calc(72 / 1721 * 100cqw);
}

.n1 {
  left: calc(154 / 1721 * 100cqw);
  top: calc(123 / 1721 * 100cqw);
}

.n2 {
  left: calc(601 / 1721 * 100cqw);
  top: calc(255 / 1721 * 100cqw);
}

.n3 {
  left: calc(1048 / 1721 * 100cqw);
  top: calc(123 / 1721 * 100cqw);
}

.n4 {
  left: calc(1495 / 1721 * 100cqw);
  top: calc(255 / 1721 * 100cqw);
}

.n1::after {
  left: calc(26 / 1721 * 100cqw);
  top: calc(92 / 1721 * 100cqw);
}

.n2::after {
  left: calc(26 / 1721 * 100cqw);
  top: calc(-40 / 1721 * 100cqw);
}

.n3::after {
  left: calc(26 / 1721 * 100cqw);
  top: calc(92 / 1721 * 100cqw);
}

.n4::after {
  left: calc(26 / 1721 * 100cqw);
  top: calc(-40 / 1721 * 100cqw);
}

.tailored-section {
  min-height: 868px;
  padding: 114px 0 104px;
  background: #fff;
  overflow: hidden;
}

.tailored-section .container-figma {
  container-type: inline-size;
}

.tailored-grid {
  display: grid;
  grid-template-columns: calc(671 / 1720 * 100cqw) calc(804 / 1720 * 100cqw);
  column-gap: calc(141 / 1720 * 100cqw);
  align-items: start;
  padding-left: calc(63 / 1720 * 100cqw);
}

.tailored-visual {
  position: relative;
  width: calc(671 / 1720 * 100cqw);
  height: calc(717 / 1720 * 100cqw);
}

.puzzle-img {
  position: absolute;
  left: calc(-269 / 1720 * 100cqw);
  top: calc(-278 / 1720 * 100cqw);
  width: calc(1223 / 1720 * 100cqw);
  max-width: none;
  height: auto;
}

.tailored-copy {
  width: min(100%, calc(804 / 1720 * 100cqw));
  padding-left: 0;
}

.tailored-copy .eyebrow {
  margin-bottom: 10px;
}

.tailored-copy h2 {
  margin-bottom: 24px;
}

.tailored-copy > p {
  max-width: 804px;
  margin-bottom: 30px;
}

.tailored-list {
  max-width: 804px;
  margin-bottom: 37px;
}

.tailored-list article {
  display: flex;
  gap: 24px;
  min-height: 115px;
  padding: 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.tailored-list img {
  display: block;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.tailored-list h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tailored-list p {
  color: var(--muted);
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}

.testimonials-section {
  padding: 100px 0;
}

.testimonial-card {
  min-height: 306px;
  background: #fff;
  border-radius: 14px;
  padding: 38px 36px 30px;
  box-shadow: 0 18px 42px rgba(18, 48, 104, 0.1);
}

.stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.testimonial-card > p {
  color: var(--navy);
  font-size: 18px;
  line-height: 30px;
  min-height: 120px;
  margin-bottom: 28px;
}

.client {
  display: flex;
  align-items: center;
  gap: 18px;
}

.client span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
}

.client h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 2px;
}

.client p {
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}

.about-hero {
  min-height: 592px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.about-hero-copy {
  max-width: 720px;
}

.about-hero h1 {
  max-width: 720px;
  color: var(--navy);
  font-size: 85px;
  line-height: 90px;
  font-weight: 700;
  margin: 30px 0 0;
}

.about-story-section,
.about-faq-section {
  padding: 100px 0;
  background: #fff;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 844px) minmax(0, 762px);
  gap: 64px;
  align-items: center;
}

.about-rounded-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 22px 42px rgba(18, 48, 104, 0.08);
}

.about-copy h2 {
  color: var(--navy);
  font-size: 56px;
  line-height: 62px;
  font-weight: 700;
  margin: 22px 0 18px;
}

.about-copy h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin: 22px 0 8px;
}

.about-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 10px;
}

.about-copy blockquote {
  margin: 24px 0;
  padding: 24px 30px;
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(18, 48, 104, 0.08);
}

.about-copy blockquote p {
  color: var(--navy);
  margin-bottom: 8px;
}

.about-copy cite {
  color: var(--muted);
  font-style: normal;
}

.about-values-section,
.about-trust-section {
  padding: 100px 0;
}

.about-values-section::before,
.about-values-section::after {
  content: "";
  position: absolute;
  width: 566px;
  height: 486px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.about-values-section::before {
  top: 0;
  left: 0;
  opacity: 0.2;
  background-image: url("../image/cover-wire-left.png");
}

.about-values-section::after {
  right: 0;
  bottom: 0;
  opacity: 0.3;
  background-image: url("../image/cover-wire-right.png");
}

.about-values-section .container-figma {
  position: relative;
  z-index: 1;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.about-value-card {
  min-height: 190px;
  padding: 32px 28px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 48, 104, 0.1);
}

.about-benefit-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 12px;
  color: var(--blue);
  background: var(--blue-soft);
}

.about-value-icon-wrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eff5ff;
}

.about-value-icon-wrap .about-value-icon {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.about-value-card h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  margin: 24px 0 8px;
}

.about-value-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}

.about-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
  margin-top: 34px;
}

.about-benefit-grid article {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-benefit-grid h3 {
  margin: 0 0 4px;
}

.about-benefit-grid p {
  margin: 0;
}

.about-faq-list {
  max-width: 1295px;
  margin: 0 auto;
}

.about-faq-list details {
  border: 1px solid #d4d6d9;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 36px 74px rgba(203, 228, 242, 0.4);
  overflow: hidden;
}

.about-faq-list details + details {
  margin-top: 30px;
}

.about-faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 31px 22px 34px;
  color: var(--navy);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.about-faq-question {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.about-faq-prefix {
  flex: 0 0 auto;
}

.about-faq-list summary::-webkit-details-marker {
  display: none;
}

.about-faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #050505;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}

.about-faq-list details[open] summary::after {
  content: "-";
}

.about-faq-list details[open] summary {
  padding-bottom: 23px;
}

.about-faq-list p {
  position: relative;
  color: var(--muted);
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  padding: 26px 34px 28px;
}

.about-faq-list p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 43px;
  right: 31px;
  border-top: 1px dashed #0d1117;
}

.about-testimonials {
  padding-bottom: 100px;
}

.auto-home-hero {
  min-height: 592px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.auto-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.86) 27%, rgba(255, 255, 255, 0) 64%),
    linear-gradient(135deg, rgba(238, 235, 244, 0.98) 0%, rgba(238, 235, 244, 0) 48%);
  pointer-events: none;
}

.auto-home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: min(48vw, 708px);
  height: min(100%, 712px);
  background: url("../image/auto-home-hero-left-shade.png") left top / contain no-repeat;
  pointer-events: none;
}

.auto-home-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.auto-home-hero h1 {
  color: var(--navy);
  font-size: 85px;
  line-height: 90px;
  font-weight: 700;
  margin: 30px 0 0;
}

.auto-home-coverage {
  padding: 106px 0 100px;
  background: #fff;
}

.auto-home-coverage .section-heading {
  margin-bottom: 62px;
}

.auto-home-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px;
  align-items: stretch;
}

.auto-home-service-card {
  min-height: 405px;
  padding: 29px 29px 34px;
  border-radius: 26px;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.auto-home-service-card:hover,
.auto-home-service-card:focus-within {
  box-shadow: 0 36px 74px rgba(203, 228, 242, 0.4);
}

.auto-home-service-card .kicker {
  color: var(--blue);
  font-size: 18px;
  line-height: 30px;
  margin: 28px 0 4px;
}

.auto-home-service-card h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 0 22px;
}

.auto-home-service-card p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 26px;
}

.auto-home-text-link {
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  text-decoration: none;
}

.auto-home-trust {
  padding: 100px 0;
}

.auto-home-trust .about-rounded-img {
  box-shadow: none;
}

.auto-home-image-banner {
  padding: 100px 0 0;
  background: #fff;
}

.auto-home-banner-card {
  min-height: 648px;
  display: grid;
  place-items: end center;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding-bottom: 64px;
  isolation: isolate;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.auto-home-banner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
}

.auto-home-banner-copy {
  width: min(100% - 48px, 1006px);
  color: #fff;
  text-align: center;
}

.auto-home-banner-copy .eyebrow,
.auto-home-banner-copy h2,
.auto-home-banner-copy p {
  color: #fff;
}

.auto-home-banner-copy .eyebrow {
  margin-bottom: 17px;
}

.auto-home-banner-copy .eyebrow span {
  background: #fff;
}

.auto-home-banner-copy h2 {
  font-size: 64px;
  line-height: 74px;
  font-weight: 700;
  margin: 0 0 19px;
}

.auto-home-banner-copy p {
  max-width: 810px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 30px;
}

.auto-home-expertise {
  padding: 134px 0 104px;
  background: #fff;
}

.auto-home-expertise .container-figma {
  width: min(var(--container), calc(100% - 48px));
}

.auto-home-expertise-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(56px, 4.3vw, 74px);
}

.auto-home-expertise-copy {
  max-width: 762px;
}

.auto-home-expertise-copy h2 {
  color: var(--navy);
  font-size: 64px;
  line-height: 74px;
  font-weight: 700;
  margin: 22px 0 27px;
}

.auto-home-expertise-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 20px;
}

.auto-home-expertise-img {
  width: 100%;
  aspect-ratio: 846 / 596;
  object-fit: cover;
  display: block;
}

.auto-home-process {
  min-height: 800px;
  padding: 100px 0 82px;
}

.auto-home-process .wire-left {
  top: auto;
  bottom: 0;
  left: 0;
  opacity: 0.32;
}

.auto-home-process .wire-right {
  top: 0;
  right: 0;
  bottom: auto;
  opacity: 0.32;
}

.auto-home-process-line {
  min-height: 315px;
  position: relative;
  margin-top: 58px;
}

.auto-home-process-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 148px;
  height: 3px;
  background: var(--blue);
}

.auto-home-step-card {
  width: min(100%, 380px);
  min-height: 160px;
  position: absolute;
  padding: 43px 29px 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18, 48, 104, 0.06);
}

.auto-home-step-card h3 {
  color: var(--navy);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 48px 14px 0;
}

.auto-home-step-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}

.auto-home-step-card span {
  position: absolute;
  top: 42px;
  right: 29px;
  color: var(--blue);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.auto-home-step-card.step-1 {
  left: 0;
  top: 178px;
}

.auto-home-step-card.step-2 {
  left: 26%;
  top: 0;
}

.auto-home-step-card.step-3 {
  left: 52%;
  top: 178px;
}

.auto-home-step-card.step-4 {
  right: 0;
  top: 0;
}

.auto-home-process-node {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 1;
  border-radius: 17px;
  background: var(--blue);
}

.auto-home-process-node img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.auto-home-process-node::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 50%;
  top: 93px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 4px solid var(--section);
  background: var(--blue);
}

.auto-home-process-node.node-1 {
  left: 9%;
  top: 47px;
}

.auto-home-process-node.node-2 {
  left: 35%;
  top: 178px;
}

.auto-home-process-node.node-2::after,
.auto-home-process-node.node-4::after {
  top: -40px;
}

.auto-home-process-node.node-3 {
  left: 61%;
  top: 47px;
}

.auto-home-process-node.node-4 {
  right: 9%;
  top: 178px;
}

.auto-home-testimonials {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
}

.contact-hero {
  min-height: 592px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 33%, rgba(255, 255, 255, 0.28) 72%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(135deg, rgba(238, 235, 244, 0.9) 0%, rgba(238, 235, 244, 0) 52%);
}

.contact-hero::after {
  z-index: 2;
  background: linear-gradient(135deg, rgba(4, 20, 36, 0.12) 0%, rgba(4, 20, 36, 0) 48%);
}

.contact-hero-wire {
  width: 567px;
  height: 487px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  opacity: 0.2;
  pointer-events: none;
}

.contact-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 740px;
}

.contact-hero h1 {
  color: var(--navy);
  font-size: 85px;
  line-height: 90px;
  font-weight: 700;
  margin: 31px 0 0;
}

.contact-form-section {
  padding: 92px 0 72px;
  background: #fff;
}

.contact-form-panel {
  width: min(100%, 1188px);
  min-height: 781px;
  margin-inline: auto;
  padding: 103px 110px 96px;
  border: 1px solid #cfe1fb;
  border-radius: 26px;
  background: #fff;
}

.contact-form-panel .section-heading {
  margin-bottom: 47px;
}

.contact-form-panel .section-heading h2 {
  font-size: 58px;
  line-height: 70px;
  margin: 0;
}

.gf-contact-form {
  max-width: 966px;
  margin-inline: auto;
}

.gf-contact-form .gform_wrapper,
.gf-contact-form .gform_heading,
.gf-contact-form .gform_body,
.gf-contact-form .gform_footer {
  margin: 0 !important;
}

.gf-contact-form .gform_fields,
.gf-contact-form #gform_fields_2.gform_fields {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 24px !important;
  row-gap: 25px !important;
}

.gf-contact-form .gfield {
  margin: 0 !important;
}

.gf-contact-form .contact-half,
.gf-contact-form #field_2_1,
.gf-contact-form #field_2_2,
.gf-contact-form #field_2_3,
.gf-contact-form #field_2_4 {
  grid-column: span 1 !important;
  inline-size: auto !important;
  max-width: none !important;
}

.gf-contact-form .contact-full,
.gf-contact-form #field_2_5,
.gf-contact-form #field_2_6 {
  grid-column: 1 / -1 !important;
  inline-size: auto !important;
  max-width: none !important;
}

.gf-contact-form .gfield_label {
  display: block;
  margin-bottom: 10px !important;
  color: var(--navy);
  font-size: 16px !important;
  line-height: 19px !important;
  font-weight: 400 !important;
}

.gf-contact-form input[type="text"],
.gf-contact-form input[type="email"],
.gf-contact-form input[type="tel"],
.gf-contact-form textarea {
  width: 100% !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: var(--navy) !important;
  font-size: 15px !important;
  line-height: 18px !important;
  font-weight: 500 !important;
  box-shadow: none !important;
}

.gf-contact-form input[type="text"],
.gf-contact-form input[type="email"],
.gf-contact-form input[type="tel"] {
  height: 48px !important;
  padding: 15px 16px !important;
}

.gf-contact-form textarea {
  min-height: 112px !important;
  padding: 17px 16px !important;
  resize: vertical;
}

.gf-contact-form .ginput_recaptcha {
  min-height: 78px;
}

.gf-contact-form input::placeholder,
.gf-contact-form textarea::placeholder {
  color: #91a4c2;
  opacity: 1;
}

.gf-contact-form input:focus,
.gf-contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.14) !important;
}

.gf-contact-form .gform_footer {
  display: flex;
  justify-content: center;
  padding: 42px 0 0 !important;
}

.gf-contact-form .submit-contact {
  min-width: 169px;
  min-height: 54px;
  padding: 15px 24px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--orange) !important;
  color: #fff !important;
  font-size: 20px !important;
  line-height: 24px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

.contact-location-section {
  padding: 0 0 100px;
  background: #fff;
}

.contact-location-section .section-heading {
  margin-bottom: 50px;
}

.contact-location-section .section-heading h2 {
  font-size: 58px;
  line-height: 70px;
  margin: 0;
}

.contact-map-wrap {
  overflow: hidden;
  border-radius: 10px;
}

.contact-map-img {
  width: 100%;
  display: block;
}

.contact-map-embed {
  width: 100%;
  height: 711px;
  display: block;
  border: 0;
}

.thank-you-section {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgba(239, 245, 255, 0.9), rgba(255, 255, 255, 1)),
    #fff;
}

.thank-you-panel {
  width: min(100%, 1040px);
  margin-inline: auto;
  padding: 86px 72px;
  border: 1px solid #cfe1fb;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(14, 34, 82, 0.11);
  text-align: center;
}

.thank-you-media {
  width: 124px;
  height: 124px;
  margin: 0 auto 34px;
  overflow: hidden;
  border-radius: 50%;
  background: #f1f6ff;
  box-shadow: 0 16px 44px rgba(0, 82, 204, 0.16);
}

.thank-you-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.thank-you-copy h1 {
  max-width: 780px;
  margin: 24px auto 22px;
  color: var(--navy);
  font-size: 68px;
  line-height: 76px;
  font-weight: 700;
}

.thank-you-description {
  max-width: 720px;
  margin: 0 auto;
  color: #60708f;
  font-size: 22px;
  line-height: 34px;
}

.thank-you-description p {
  margin: 0;
}

.thank-you-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.thank-you-primary {
  min-width: 184px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}

.thank-you-phone {
  min-width: 184px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px #cfe1fb;
}

.thank-you-phone:hover {
  color: var(--orange);
}

@media (max-width: 1199px) {
  .auto-home-hero h1 {
    font-size: 62px;
    line-height: 68px;
  }

  .auto-home-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .auto-home-service-card {
    min-height: 0;
  }

  .auto-home-expertise-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .auto-home-expertise-copy h2 {
    font-size: 48px;
    line-height: 56px;
  }

  .auto-home-expertise-img {
    width: min(100%, 760px);
    justify-self: start;
  }

  .auto-home-trust {
    padding-top: 28px;
    padding-bottom: 72px;
  }

  .auto-home-process {
    min-height: 0;
  }

  .auto-home-process-line {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    min-height: 0;
  }

  .auto-home-process-line::before,
  .auto-home-process-node::after {
    display: none;
  }

  .auto-home-step-card,
  .auto-home-step-card.step-1,
  .auto-home-step-card.step-2,
  .auto-home-step-card.step-3,
  .auto-home-step-card.step-4 {
    width: 100%;
    position: relative;
    inset: auto;
    padding-top: 96px;
  }

  .auto-home-process-node,
  .auto-home-process-node.node-1,
  .auto-home-process-node.node-2,
  .auto-home-process-node.node-3,
  .auto-home-process-node.node-4 {
    position: absolute;
    top: 24px;
    left: 29px;
    right: auto;
  }

  .contact-hero h1 {
    font-size: 62px;
    line-height: 68px;
  }

  .contact-form-panel {
    min-height: 0;
    padding: 72px 56px;
  }

  .contact-form-panel .section-heading h2,
  .contact-location-section .section-heading h2 {
    font-size: 48px;
    line-height: 56px;
  }

  .thank-you-section {
    min-height: 560px;
    padding: 76px 0;
  }

  .thank-you-panel {
    padding: 70px 44px;
  }

  .thank-you-copy h1 {
    font-size: 54px;
    line-height: 62px;
  }
}

@media (max-width: 767px) {
  .auto-home-hero {
    min-height: 390px;
    background-position: 58% center;
  }

  .auto-home-hero h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px;
  }

  .auto-home-coverage,
  .auto-home-trust,
  .auto-home-image-banner,
  .auto-home-expertise,
  .auto-home-process,
  .auto-home-testimonials {
    padding: 52px 0;
  }

  .auto-home-trust {
    padding-top: 18px;
    padding-bottom: 48px;
  }

  .auto-home-image-banner {
    padding-bottom: 18px;
  }

  .auto-home-expertise {
    padding-top: 24px;
  }

  .auto-home-coverage .section-heading {
    margin-bottom: 30px;
  }

  .auto-home-card-grid,
  .auto-home-process-line {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .auto-home-service-card {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .auto-home-service-card .kicker {
    margin-top: 20px;
  }

  .auto-home-service-card h3 {
    margin-bottom: 14px;
  }

  .auto-home-service-card p:not(.kicker) {
    margin-bottom: 18px;
  }

  .auto-home-service-card .kicker,
  .auto-home-service-card p:not(.kicker),
  .auto-home-text-link,
  .auto-home-banner-copy p,
  .auto-home-step-card p {
    font-size: 16px;
    line-height: 25px;
  }

  .auto-home-banner-card {
    min-height: 390px;
    border-radius: 16px;
    padding-bottom: 24px;
  }

  .auto-home-banner-copy {
    width: min(100% - 32px, 520px);
  }

  .auto-home-banner-copy h2 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 14px;
  }

  .auto-home-expertise-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .auto-home-expertise .container-figma {
    width: calc(100% - 48px);
  }

  .auto-home-expertise-copy {
    max-width: none;
  }

  .auto-home-expertise-copy h2 {
    font-size: 32px;
    line-height: 38px;
    margin: 16px 0 14px;
  }

  .auto-home-expertise-copy p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 16px;
  }

  .auto-home-step-card {
    padding: 84px 20px 22px;
    border-radius: 18px;
  }

  .auto-home-step-card h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px;
  }

  .auto-home-process-node,
  .auto-home-process-node.node-1,
  .auto-home-process-node.node-2,
  .auto-home-process-node.node-3,
  .auto-home-process-node.node-4 {
    left: 22px;
  }

  .contact-hero {
    min-height: 390px;
    background-position: 64% center;
  }

  .contact-hero-wire {
    width: 290px;
    height: 250px;
  }

  .contact-hero h1 {
    font-size: 42px;
    line-height: 48px;
    margin-top: 20px;
  }

  .contact-form-section {
    padding: 52px 0 46px;
  }

  .contact-form-panel {
    padding: 38px 20px 42px;
    border-radius: 18px;
  }

  .contact-form-panel .section-heading {
    margin-bottom: 30px;
  }

  .contact-form-panel .section-heading h2,
  .contact-location-section .section-heading h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .gf-contact-form .gform_fields,
  .gf-contact-form #gform_fields_2.gform_fields {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .gf-contact-form .contact-half,
  .gf-contact-form .contact-full,
  .gf-contact-form #field_2_1,
  .gf-contact-form #field_2_2,
  .gf-contact-form #field_2_3,
  .gf-contact-form #field_2_4,
  .gf-contact-form #field_2_5,
  .gf-contact-form #field_2_6 {
    grid-column: 1 / -1 !important;
  }

  .gf-contact-form .gfield_label {
    font-size: 15px !important;
    line-height: 18px !important;
  }

  .gf-contact-form .gform_footer {
    padding-top: 30px !important;
  }

  .gf-contact-form .submit-contact {
    width: min(100%, 190px);
    min-height: 52px;
    font-size: 18px !important;
    line-height: 22px !important;
  }

  .contact-location-section {
    padding-bottom: 64px;
  }

  .contact-location-section .section-heading {
    margin-bottom: 30px;
  }

  .contact-map-wrap {
    border-radius: 8px;
  }

  .contact-map-img {
    width: 180%;
    max-width: none;
    transform: translateX(-22%);
  }

  .contact-map-embed {
    height: 360px;
  }

  .thank-you-section {
    min-height: 0;
    padding: 52px 0;
  }

  .thank-you-panel {
    padding: 42px 20px;
    border-radius: 18px;
  }

  .thank-you-media {
    width: 92px;
    height: 92px;
    margin-bottom: 26px;
  }

  .thank-you-copy h1 {
    margin: 20px auto 18px;
    font-size: 36px;
    line-height: 42px;
  }

  .thank-you-description {
    font-size: 16px;
    line-height: 25px;
  }

  .thank-you-actions {
    gap: 14px;
    margin-top: 28px;
  }

  .thank-you-primary,
  .thank-you-phone {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
    line-height: 20px;
  }
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 54px;
}

.slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f1b9a1;
}

.slider-dots .active {
  background: var(--orange);
}

.cta-section {
  padding: 100px 0;
  background: #fff;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 446px;
  border-radius: 40px;
  padding: 100px 48px;
  color: #fff;
  background:
    linear-gradient(126deg, #2f6bff 0%, #1b4dd8 100%);
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  top: 8px;
  width: min(510px, 44%);
  aspect-ratio: 510 / 438;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.cta-panel::before {
  left: 0;
  background-image: url("../image/cta-mask-left.png");
  background-position: left top;
}

.cta-panel::after {
  right: 0;
  background-image: url("../image/cta-mask-right.png");
  background-position: right top;
}

.cta-panel h2,
.cta-panel p,
.cta-panel .btn {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  color: #fff;
  margin-bottom: 25px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 1156px;
  margin: 0 auto 25px;
}

.cta-panel .d-flex {
  gap: 15px !important;
}

.cta-panel .btn {
  min-height: 62px;
  padding: 19px 33px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.15);
}

.cta-panel .btn-orange {
  min-width: 257px;
}

.cta-panel .btn-white-phone {
  min-width: 234px;
}

.footer {
  background: #111b42;
  color: #fff;
  padding: 100px 0 0;
}

.footer-main {
  min-height: 313.75px;
  display: grid;
  grid-template-columns: 380px 143px minmax(190px, 229px) 371px;
  justify-content: space-between;
  align-items: start;
  column-gap: 60px;
}

.footer-logo-link {
  display: inline-block;
  width: 132px;
  height: 120px;
  margin-bottom: 22.9px;
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-about {
  max-width: 380px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.footer h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li,
.footer a {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

.footer a {
  transition: color 0.2s ease;
}

.footer-main,
.footer-brand,
.footer-column,
.footer-contact,
.contact-list li {
  min-width: 0;
}

.footer a,
.footer-about,
.legal,
.copyright {
  overflow-wrap: anywhere;
}

.footer a:hover,
.footer a:focus {
  color: var(--orange);
}

.footer li + li {
  margin-top: 15px;
}

.footer-column ul li + li {
  margin-top: 15px;
}

.contact-list {
  display: grid;
  gap: 6px;
}

.contact-list li {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-list a,
.contact-list span {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-list li + li {
  margin-top: 0;
}

.footer-column .contact-list li + li {
  margin-top: 0;
}

.contact-list i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  margin-right: 0;
  font-size: 18px;
}

.footer-legal-wrap {
  margin-top: 60px;
  padding-inline: 20px;
}

.legal {
  max-width: 1680px;
  min-height: 80px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 40px;
}

.legal p {
  margin: 0;
}

.legal p + p {
  margin-top: 10px;
}

.footer-bottom {
  margin-top: 23px;
  min-height: 84.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  width: 560px;
  max-width: 100%;
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.privacy-policy .license-strip{
	display:none;
}
.privacy-policy article{
	width:75%;
}
.privacy-policy h3{
	margin-top:30px;
}
.privacy-policy p a{
	color:var(--orange);
}
.privacy-policy p a:hover{
	text-decoration:underline;
}



.gf-quote-form #field_1_2,.gf-quote-form #field_1_6{
	grid-column:span 6!important;
}
.gf-quote-form #field_1_1{
	grid-column:span 3!important;
}





@media (max-width: 1399px) {
  :root {
    --container: 1350px;
  }

  .site-header,
  .site-header .navbar {
    min-height: 104px;
  }

  .site-logo,
  .footer-logo {
    width: 106px;
    height: 96px;
  }

  .footer-main {
    grid-template-columns: minmax(220px, 0.95fr) minmax(100px, 0.45fr) minmax(150px, 0.65fr) minmax(330px, 1.25fr);
    column-gap: clamp(20px, 2.2vw, 30px);
  }

  .footer-logo-link {
    width: 106px;
    height: 96px;
  }

  .contact-list li {
    gap: 12px;
  }

  .contact-list i {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .footer h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .footer-about,
  .footer li,
  .footer a,
  .legal,
  .copyright {
    font-size: 17px;
  }

  .nav-gap {
    gap: 24px;
  }

  .navbar .nav-link,
  .btn {
    font-size: 17px;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-copy h1 {
    font-size: 68px;
    line-height: 72px;
  }

  .quote-intro h2,
  .section-heading h2,
  .tailored-copy h2,
  .cta-panel h2 {
    font-size: 52px;
    line-height: 60px;
  }

  .quote-panel {
    display: block;
    min-height: 0;
    padding: 40px;
  }

  .quote-intro {
    padding: 0;
    margin-bottom: 42px;
  }

  .quote-intro p {
    font-size: 17px;
    line-height: 27px;
  }

  .quote-form {
    margin-inline: auto;
    padding: 41px 40px 40px;
  }

  .process-section {
    min-height: 690px;
  }

  .tailored-section {
    min-height: 720px;
    padding: 80px 0;
  }

  .tailored-grid {
    grid-template-columns: 442px minmax(0, 1fr);
    column-gap: 72px;
    padding-left: 0;
  }

  .tailored-visual {
    width: 442px;
    height: 473px;
  }

  .puzzle-img {
    left: -177px;
    top: -183px;
    width: 806px;
    height: 839px;
  }

  .tailored-copy {
    width: 100%;
  }

  .tailored-list {
    margin-bottom: 34px;
  }

  .tailored-list article {
    min-height: 102px;
  }
}

@media (max-width: 1199px) {
  .site-header .container-figma {
    flex-wrap: wrap;
  }

  .navbar-toggler {
    position: relative;
    z-index: 2;
    margin-left: auto;
  }

  .site-header .navbar-collapse {
    flex: 0 0 100%;
    width: 100%;
    padding: 24px 0 30px;
    text-align: center;
  }

  .nav-gap {
    align-items: center;
    gap: 10px;
  }

  .nav-cta {
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-bg {
    background-position: 58% top;
  }

  .hero-floating-actions {
    right: 28px;
    top: 68%;
    gap: 18px;
  }

  .hero-floating-action {
    width: 58px;
    height: 58px;
    font-size: 21px;
  }

  .hero-copy {
    max-width: 620px;
    padding-top: 86px;
  }

  .quote-panel {
    display: block;
    padding: 42px 32px;
  }

  .quote-intro {
    padding: 0;
    margin-bottom: 42px;
  }

  .quote-intro p {
    font-size: 17px;
    line-height: 27px;
  }

  .gf-quote-form .gfield_checkbox {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .comparison-board {
    height: auto;
    aspect-ratio: auto;
    padding: 42px 28px 48px;
  }

  .comparison-lines {
    display: none;
  }

  .comparison-label {
    position: relative;
    left: auto;
    top: auto;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 22px;
    transform: none;
  }

  .comparison-label span::after {
    margin-left: 8px;
  }

  .comparison-label-captive {
    margin: 28px 0 18px;
  }

  .comparison-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 24px;
    justify-items: center;
  }

  .comparison-person,
  .comparison-brand,
  .comparison-agent,
  .broker-row .comparison-person,
  .broker-row .comparison-brand,
  .captive-row .comparison-person,
  .captive-row .comparison-agent {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .broker-row,
  .captive-row {
    min-height: 0;
  }

  .comparison-person::after,
  .comparison-agent::after,
  .comparison-brand::after,
  .provider-stack::before,
  .provider-stack::after {
    display: none;
  }

  .provider-stack {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: min(100%, 520px);
    margin-top: 10px;
  }

  .provider-pill.single {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
    width: min(100%, 520px);
  }

  .comparison-divider {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
  }

  .process-section {
    min-height: 1040px;
    padding-bottom: 90px;
  }

  .process-section .wire-left {
    top: auto;
    bottom: -40px;
  }

  .process-section .wire-right {
    top: 0;
  }

  .process-line {
    width: 100%;
    max-width: 760px;
    min-height: 760px;
    margin-inline: auto;
    transform: none;
  }

  .process-line::before {
    left: 35px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 3px;
    height: auto;
  }

  .step-card {
    left: 104px;
    width: calc(100% - 104px);
    min-height: 168px;
    padding: 24px;
  }

  .step-card h3 {
    font-size: 20px;
    line-height: 27px;
  }

  .step-card p {
    font-size: 14px;
    line-height: 22px;
  }

  .step-card span {
    top: 28px;
    right: 24px;
  }

  .step-one {
    top: 0;
  }

  .step-two {
    top: 196px;
    min-height: 168px;
  }

  .step-three {
    top: 392px;
    min-height: 168px;
  }

  .step-four {
    top: 588px;
    min-height: 168px;
  }

  .process-node {
    display: block;
    width: 64px;
    height: 64px;
  }

  .process-node img {
    width: 64px;
    height: 64px;
  }

  .process-node::after {
    width: 18px;
    height: 18px;
  }

  .n1 {
    left: 3px;
    top: 24px;
  }

  .n2 {
    left: 3px;
    top: 220px;
  }

  .n3 {
    left: 3px;
    top: 416px;
  }

  .n4 {
    left: 3px;
    top: 612px;
  }

  .n1::after,
  .n2::after,
  .n3::after,
  .n4::after {
    left: 23px;
    top: 78px;
  }

  .tailored-copy {
    padding-left: 0;
  }

  .tailored-section {
    min-height: 0;
    padding: 82px 0;
  }

  .tailored-grid {
    grid-template-columns: 1fr;
    row-gap: 44px;
    padding-left: 0;
  }

  .tailored-visual {
    width: min(671px, 100%);
    height: min(717px, calc((100vw - 48px) * 1.068));
    margin-inline: auto;
  }

  .puzzle-img {
    left: 50%;
    top: 50%;
    width: min(1223px, calc((100vw - 48px) * 1.82));
    height: auto;
    transform: translate(-50%, -50%);
  }

  .tailored-copy {
    max-width: 804px;
    margin-inline: auto;
  }

  .about-hero {
    min-height: 520px;
    background-position: 58% center;
  }

  .about-hero h1 {
    font-size: 62px;
    line-height: 68px;
  }

  .about-split,
  .about-split-reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-split-reverse .about-rounded-img {
    order: 2;
  }

  .about-split-reverse .about-copy {
    order: 1;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-copy h2 {
    font-size: 44px;
    line-height: 50px;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .site-header .container-figma {
    flex-wrap: nowrap;
  }

  .site-header .navbar-toggler {
    display: none;
  }

  .site-header .navbar-collapse {
    flex: 1 1 auto;
    width: auto;
    padding: 0;
    text-align: left;
  }

  .site-header .navbar-collapse.collapse {
    display: flex !important;
  }

  .site-header .navbar-nav {
    flex-direction: row;
    align-items: center;
  }

  .site-header .nav-cta {
    margin-top: 0;
    margin-right: 0;
    margin-left: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer {
    padding-top: 72px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px 40px;
  }

  .footer-brand,
  .footer-company,
  .footer-services,
  .footer-contact {
    min-width: 0;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .contact-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-list a,
  .contact-list span,
  .legal,
  .copyright {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .footer-legal-wrap {
    margin-top: 48px;
    padding-inline: 0;
  }

  .legal {
    max-width: 100%;
    min-height: 0;
    line-height: 30px;
  }

  .footer-bottom {
    min-height: 74px;
  }
}

@media (max-width: 767px) {
  .container-figma {
    width: min(100% - 28px, 540px);
  }

  .site-header,
  .site-header .navbar {
    min-height: 86px;
  }

  .site-logo,
  .footer-logo {
    width: 84px;
    height: 76px;
  }

  .site-header .navbar-collapse {
    padding: 18px 0 24px;
  }

  .navbar .nav-link {
    font-size: 18px;
    line-height: 24px;
  }

  .nav-cta {
    width: min(100%, 244px);
    min-height: 58px;
    padding: 14px 22px;
    font-size: 18px;
    line-height: 23px;
  }

  .footer-main {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 56px;
  }

  .footer-brand {
    max-width: 380px;
  }

  .footer-contact {
    grid-column: span 2;
  }

  .hero-section {
    min-height: 690px;
  }

  .hero-bg {
    background-position: 61% top;
  }

  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.42) 100%);
  }

  .hero-floating-actions {
    right: 18px;
    top: 73%;
    gap: 12px;
  }

  .hero-floating-action {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 58px;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 47px;
  }

  .hero-copy p {
    font-size: 17px;
    line-height: 27px;
  }

  .eyebrow {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  .btn {
    min-height: 50px;
    font-size: 16px;
    line-height: 20px;
    padding: 14px 20px;
  }

  .strip-track {
    min-width: 0;
    gap: 28px;
    animation: stripMove 18s linear infinite;
  }

  .strip-track span {
    font-size: 13px;
  }

  .quote-section,
  .cover-section,
  .advantage-section,
  .process-section,
  .testimonials-section,
  .cta-section,
  .footer {
    padding: 72px 0;
  }

  .footer {
    padding-bottom: 0;
  }

  .quote-panel {
    padding: 28px 16px;
  }

  .quote-form {
    min-height: 0;
    padding: 24px 16px;
    border-radius: 20px;
  }

  .gf-quote-form .gform_fields,
  .gf-quote-form .gfield_checkbox {
    grid-template-columns: 1fr !important;
  }

  .gf-quote-form .submit-quote {
    width: min(100%, 286px);
    min-width: 0;
    min-height: 56px;
    padding: 14px 24px !important;
    font-size: 17px !important;
    line-height: 22px !important;
    white-space: nowrap;
  }

  .quote-processing-overlay {
    padding: 16px;
  }

  .quote-processing-modal {
    height: auto;
    max-height: calc(100vh - 48px);
    min-height: 0;
    padding: 38px 16px 34px;
    border-radius: 20px;
  }

  .quote-processing-close {
    width: 54px;
    height: 54px;
    top: -18px;
    right: -10px;
    font-size: 26px;
  }

  .quote-processing-modal h2 {
    font-size: 31px;
    line-height: 37px;
    margin-bottom: 14px;
  }

  .quote-processing-modal p {
    font-size: 14px;
    line-height: 22px;
  }

  .quote-processing-scene {
    height: 260px;
    margin-top: 20px;
  }

  .market-icon {
    width: 54px;
    height: 54px;
    border-width: 6px;
    font-size: 22px;
  }

  .market-home {
    top: 0;
    left: 31%;
  }

  .market-commercial {
    top: 0;
    right: 31%;
  }

  .market-auto {
    top: 86px;
    left: 7%;
  }

  .market-life {
    top: 86px;
    right: 7%;
  }

  .quote-magnifier {
    width: 154px;
    height: 154px;
    top: 82px;
    font-size: 140px;
  }

  .quote-processing-pill {
    min-width: 210px;
    min-height: 48px;
    padding: 12px 22px;
    font-size: 16px;
    line-height: 20px;
  }

  .quote-intro h2,
  .section-heading h2,
  .tailored-copy h2,
  .cta-panel h2 {
    font-size: 38px;
    line-height: 46px;
  }

  .quote-intro p {
    font-size: 16px;
    line-height: 25px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .service-card,
  .testimonial-card {
    min-height: auto;
  }

  .advantage-points {
    gap: 18px;
    margin-top: 28px;
  }

  .advantage-points span {
    width: 100%;
    font-size: 17px;
    line-height: 24px;
    text-align: left;
  }

  .comparison-board {
    margin-top: 34px;
    padding: 28px 16px 32px;
    border-width: 2px;
    border-radius: 18px;
    box-shadow: 0 28px 45px rgba(0, 82, 204, 0.16);
    text-align: center;
  }

  .comparison-label {
    width: max-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .comparison-row {
    justify-items: center;
    text-align: center;
  }

  .comparison-person,
  .comparison-agent,
  .comparison-brand,
  .broker-row .comparison-person,
  .broker-row .comparison-brand,
  .captive-row .comparison-person,
  .captive-row .comparison-agent {
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .person-icon,
  .brand-mark {
    width: 92px;
    height: 92px;
    border-width: 4px;
  }

  .person-icon {
    font-size: 42px;
  }

  .brand-mark img {
    width: 100%;
  }

  .comparison-person,
  .comparison-agent,
  .comparison-brand,
  .comparison-brand strong {
    font-size: 19px;
    line-height: 26px;
  }

  .provider-stack {
    width: 100%;
    align-items: center;
    gap: 14px;
  }

  .provider-pill {
    width: 100%;
    max-width: 392px;
    min-height: 54px;
    padding: 10px 18px;
    border-radius: 16px;
    font-size: 18px;
    line-height: 25px;
  }

  .provider-pill.single {
    min-height: 62px;
  }

  .comparison-divider {
    margin: 26px 0 28px;
  }

  .comparison-divider span {
    width: 40px;
    height: 40px;
    font-size: 17px;
    line-height: 22px;
  }

  .process-line {
    max-width: 100%;
    min-height: 820px;
    margin-top: 8px;
  }

  .process-section {
    min-height: 0;
  }

  .process-section .wire-left,
  .process-section .wire-right {
    width: 260px;
    height: 224px;
  }

  .process-section .wire-left {
    bottom: -20px;
  }

  .process-line::before {
    left: 35px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 3px;
    height: auto;
  }

  .step-card {
    left: 78px;
    width: calc(100% - 78px);
    min-height: 0;
    padding: 22px 20px;
  }

  .step-card h3 {
    font-size: 18px;
    line-height: 25px;
  }

  .step-card p {
    font-size: 14px;
    line-height: 22px;
  }

  .step-card span {
    top: 20px;
    right: 18px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
  }

  .step-one {
    top: 42px;
  }

  .step-two {
    top: 250px;
  }

  .step-three {
    top: 464px;
  }

  .step-four {
    top: 678px;
  }

  .process-node,
  .process-node img {
    width: 56px;
    height: 56px;
  }

  .process-node {
    left: 8px;
  }

  .n1 {
    top: 61px;
  }

  .n2 {
    top: 269px;
  }

  .n3 {
    top: 483px;
  }

  .n4 {
    top: 697px;
    right: auto;
  }

  .process-node::after {
    left: 18px;
    top: 72px;
    width: 17px;
    height: 17px;
  }

  .n4::after {
    display: none;
  }

  .tailored-section {
    padding: 72px 0;
  }

  .tailored-grid {
    row-gap: 30px;
  }

  .tailored-copy {
    order: 1;
    position: relative;
    z-index: 2;
  }

  .tailored-visual {
    order: 2;
    height: min(420px, calc((100vw - 28px) * 1.06));
    overflow: hidden;
    z-index: 1;
  }

  .puzzle-img {
    width: calc((100vw - 28px) * 1.82);
  }

  .tailored-copy .eyebrow {
    justify-content: flex-start;
  }

  .tailored-copy h2,
  .tailored-copy > p {
    text-align: left;
  }

  .tailored-list article {
    gap: 14px;
    min-height: 0;
    padding: 20px 0;
    align-items: flex-start;
  }

  .tailored-list img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .about-hero {
    min-height: 430px;
    background-position: 62% center;
  }

  .about-hero h1 {
    font-size: 42px;
    line-height: 48px;
  }

  .about-story-section,
  .about-values-section,
  .about-trust-section,
  .about-faq-section,
  .about-testimonials {
    padding: 72px 0;
  }

  .about-copy h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .about-copy p,
  .about-faq-list summary {
    font-size: 16px;
    line-height: 25px;
  }

  .about-values-grid,
  .about-benefit-grid {
    grid-template-columns: 1fr;
  }

  .about-value-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .about-values-section::before,
  .about-values-section::after {
    width: 320px;
    height: 275px;
  }

  .about-rounded-img {
    border-radius: 14px;
  }

  .about-faq-list summary {
    min-height: 64px;
    padding: 17px 18px;
  }

  .about-faq-list summary::after {
    font-size: 26px;
  }

  .about-faq-list details + details {
    margin-top: 16px;
  }

  .about-faq-list p {
    padding: 18px 18px 20px;
  }

  .about-faq-list p::before {
    left: 18px;
    right: 18px;
  }

  .cta-panel {
    min-height: 0;
    padding: 58px 22px;
    border-radius: 16px;
  }

  .cta-panel .d-flex {
    gap: 18px !important;
  }

  .cta-panel .btn,
  .cta-panel .btn-orange,
  .cta-panel .btn-white-phone {
    width: min(100%, 286px);
    min-width: 0;
    min-height: 58px;
    padding: 14px 22px;
    font-size: 17px;
    line-height: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .contact-list li {
    min-width: 0;
  }

  .contact-list a,
  .contact-list span,
  .legal,
  .copyright {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .footer h2 {
    margin-bottom: 18px;
  }

  .contact-list {
    gap: 6px;
  }

  .legal {
    font-size: 15px;
    line-height: 28px;
    text-align: left;
  }

  .footer-legal-wrap {
    margin-top: 50px;
    padding-inline: 0px;
  }

  .footer-bottom {
    margin-top: 22px;
    min-height: 76px;
  }

  .copyright {
    font-size: 15px;
  }
	.privacy-policy article{
	width:100%;
}

	
}

@keyframes stripMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
