:root {
  --home-navy: #071b50;
  --home-blue: #0750d1;
  --home-blue-dark: #063da4;
  --home-green: #4db817;
  --home-green-dark: #318809;
  --home-amber: #ffb000;
  --home-violet: #8b6de8;
  --home-ink: #243252;
  --home-muted: #64708a;
  --home-pale: #f3f7ff;
  --home-line: #dfe6f0;
  --home-shadow: 0 9px 26px rgba(7, 32, 85, .09);
  --home-shadow-hover: 0 15px 34px rgba(7, 32, 85, .14);
  --home-container: 1240px;
}

.cc-home-page,
.cc-home-page * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.cc-home-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--home-ink);
  background: #fff;
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.cc-home-page.cc-menu-open {
  overflow: hidden;
}

.cc-home-page img,
.cc-home-page picture,
.cc-home-page svg {
  display: block;
}

.cc-home-page img {
  max-width: 100%;
}

.cc-home-page a {
  color: inherit;
  text-decoration: none;
}

.cc-home-page button,
.cc-home-page a {
  -webkit-tap-highlight-color: transparent;
}

.cc-home-page h1,
.cc-home-page h2,
.cc-home-page h3,
.cc-home-page p,
.cc-home-page ul {
  margin-top: 0;
}

.cc-home-page h1,
.cc-home-page h2,
.cc-home-page h3 {
  color: var(--home-navy);
  font-family: inherit;
}

.cc-home-page [id] {
  scroll-margin-top: 90px;
}

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

.cc-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cc-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.cc-skip-link {
  position: fixed;
  z-index: 99999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff !important;
  background: var(--home-navy);
  border-radius: 7px;
  transform: translateY(-150%);
}

.cc-skip-link:focus {
  transform: translateY(0);
}

.cc-home-page :focus-visible {
  outline: 3px solid #ffbf47 !important;
  outline-offset: 3px;
}

/* Header */
.cc-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: auto;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(223, 230, 240, .78);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease;
}

.admin-bar .cc-site-header {
  top: 32px;
}

.cc-site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(7, 32, 85, .12);
}

.cc-header-topbar {
  background: linear-gradient(90deg, #06194d 0%, #0755d9 52%, #0d73ff 100%);
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 650;
}

.cc-header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding-block: 8px;
}

.cc-header-topbar-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  letter-spacing: .01em;
}

.cc-header-topbar-copy strong {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.cc-header-topbar-copy span {
  color: rgba(255, 255, 255, .82);
}

.cc-header-topbar-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cc-header-topbar-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.cc-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding-block: 10px;
}

.cc-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cc-mobile-quote,
.cc-mobile-menu-actions {
  display: none;
}

.cc-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-navy);
  line-height: 1;
}

.cc-brand-mark {
  width: 56px;
  height: 48px;
  overflow: visible;
}

.cc-brand-house {
  fill: #eef4ff;
  stroke: var(--home-blue);
  stroke-width: 3;
  stroke-linejoin: round;
}

.cc-brand-swoop,
.cc-brand-broom {
  fill: none;
  stroke: var(--home-blue);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cc-brand-broom {
  stroke: var(--home-green);
}

.cc-brand-star {
  fill: var(--home-green);
}

.cc-brand-words {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cc-brand-words strong {
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -.045em;
}

.cc-brand-words small {
  color: var(--home-green-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .17em;
}

.cc-header-cta,
.cc-header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 780;
  text-decoration: none;
}

.cc-header-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--home-green) 0%, #3e9d10 100%);
  box-shadow: 0 12px 24px rgba(78, 174, 24, .28);
  border: 1px solid rgba(255, 255, 255, .12);
}

.cc-header-cta:hover {
  background: linear-gradient(135deg, var(--home-green-dark) 0%, #2f7a08 100%);
  transform: translateY(-1px);
}

.cc-header-cta .cc-icon,
.cc-header-phone .cc-icon {
  width: 17px;
  height: 17px;
}

.cc-primary-nav {
  justify-self: end;
}

.cc-primary-nav>ul,
.cc-primary-nav .cc-submenu,
.cc-site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.cc-primary-nav>ul {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 6px;
  background: rgba(6, 25, 77, .04);
  border: 1px solid rgba(223, 230, 241, .75);
  border-radius: 999px;
}

.cc-primary-nav>ul>li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
}

.cc-primary-nav>ul>li>a,
.cc-submenu-row>a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--home-navy);
  font-size: 12.5px;
  font-weight: 720;
  white-space: nowrap;
}

.cc-primary-nav>ul>li>a.is-active,
.cc-submenu-row>a.is-active {
  background: #fff;
  box-shadow: 0 8px 18px rgba(7, 32, 85, .08);
}

.cc-primary-nav>ul>li>a::after,
.cc-submenu-row>a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--home-blue);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .2s ease, transform .2s ease;
}

.cc-primary-nav a:hover,
.cc-primary-nav a:focus-visible,
.cc-primary-nav a.is-active {
  color: var(--home-blue);
}

.cc-primary-nav>ul>li>a:hover::after,
.cc-primary-nav>ul>li>a:focus-visible::after,
.cc-primary-nav>ul>li>a.is-active::after,
.cc-submenu-row>a:hover::after,
.cc-submenu-row>a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.cc-submenu-row {
  display: flex;
  align-items: center;
}

.cc-submenu-toggle,
.cc-menu-toggle {
  display: inline-grid;
  padding: 0;
  color: var(--home-navy);
  background: transparent;
  border: 0;
  cursor: pointer;
  place-items: center;
}

.cc-submenu-toggle {
  width: 26px;
  height: 44px;
}

.cc-home-page .cc-submenu-toggle {
  width: 26px !important;
  height: 44px !important;
  padding: 0 !important;
  color: var(--home-navy) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  appearance: none;
}

.cc-submenu-toggle .cc-icon {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.cc-has-submenu.is-open .cc-submenu-toggle .cc-icon {
  transform: rotate(180deg);
}

.cc-submenu {
  position: absolute;
  z-index: 30;
  top: calc(100% - 6px);
  left: -18px;
  width: 242px;
  padding: 10px !important;
  visibility: hidden;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  box-shadow: var(--home-shadow);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.cc-submenu a {
  display: block;
  padding: 9px 11px;
  color: var(--home-ink);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 650;
}

.cc-submenu a:hover,
.cc-submenu a:focus-visible {
  color: var(--home-blue);
  background: var(--home-pale);
}

.cc-has-submenu:hover .cc-submenu,
.cc-has-submenu:focus-within .cc-submenu,
.cc-has-submenu.is-open .cc-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.cc-header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 16px;
  color: var(--home-navy) !important;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(223, 230, 240, .95);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(7, 32, 85, .08);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.cc-header-phone:hover {
  background: #fff;
  transform: translateY(-1px);
}

.cc-header-phone .cc-icon {
  width: 17px;
  height: 17px;
}

.cc-site-header .cc-menu-toggle {
  display: none;
}

.cc-home-page .cc-menu-toggle {
  display: none !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  color: var(--home-navy) !important;
  background: #fff !important;
  border: 1px solid var(--home-line) !important;
  border-radius: 9px;
  box-shadow: none !important;
  appearance: none;
}

.cc-menu-toggle .cc-icon {
  width: 23px;
  height: 23px;
}

.cc-menu-close {
  display: none !important;
}

.cc-menu-toggle[aria-expanded="true"] .cc-menu-open {
  display: none !important;
}

.cc-menu-toggle[aria-expanded="true"] .cc-menu-close {
  display: block !important;
}

/* Shared text and controls */
.cc-eyebrow {
  margin-bottom: 8px;
  color: var(--home-green-dark);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.cc-section {
  padding-block: 34px;
}

.cc-section-heading {
  margin-bottom: 19px;
  text-align: center;
}

.cc-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 2.6vw, 29px);
  font-weight: 820;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.cc-section-heading h2::after {
  display: block;
  width: 32px;
  height: 3px;
  margin: 8px auto 0;
  content: "";
  background: var(--home-green);
  border-radius: 3px;
}

.cc-section-heading-compact {
  margin-bottom: 14px;
}

.cc-services .cc-section-heading .cc-eyebrow,
.cc-process-section .cc-section-heading .cc-eyebrow,
.cc-expect .cc-section-heading .cc-eyebrow {
  display: none;
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 19px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.cc-button:hover {
  transform: translateY(-2px);
}

.cc-button-primary {
  color: #fff !important;
  background: var(--home-blue);
  box-shadow: 0 7px 16px rgba(7, 80, 209, .2);
}

.cc-button-primary:hover {
  background: var(--home-blue-dark);
}

.cc-button-secondary {
  color: var(--home-blue) !important;
  background: #fff;
  border-color: var(--home-blue);
}

.cc-button-secondary:hover {
  background: var(--home-pale);
}

/* Hero */
.cc-home-page .cc-hero {
  min-height: 0;
  background: linear-gradient(90deg, #fff 0, #fff 44%, #f8fbff 44%, #f8fbff 100%);
}

.cc-hero-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: clamp(366px, 32vw, 440px);
}

.cc-hero-copy {
  align-self: center;
  padding: 14px 34px 12px 18px;
}

.cc-home-page .cc-hero h1 {
  max-width: 480px;
  margin-bottom: 10px;
  color: var(--home-navy);
  font-size: clamp(42px, 4.15vw, 56px);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.cc-home-page .cc-hero-lede {
  max-width: 470px;
  margin-bottom: 16px;
  color: var(--home-ink);
  font-size: 13.5px;
  line-height: 1.55;
}

.cc-hero .cc-actions {
  margin-bottom: 14px;
}

.cc-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
  padding: 0;
  margin-bottom: 0;
  color: #50607b;
  list-style: none;
  font-size: 9.3px;
  font-weight: 590;
}

.cc-hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cc-hero-notes .cc-icon {
  width: 15px;
  height: 15px;
  color: var(--home-green);
}

.cc-hero-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.cc-hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 13%;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.cc-hero-media picture,
.cc-hero-media img {
  width: 100%;
  height: 100%;
}

.cc-hero-media img {
  min-height: 0;
  object-fit: cover;
  object-position: 59% center;
}

/* Trust strip */
.cc-trust-wrap {
  position: relative;
  z-index: 4;
  padding-top: 0;
}

.cc-trust-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 92px;
  padding: 17px 18px;
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 14px;
  box-shadow: var(--home-shadow);
}

.cc-trust-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 0 16px;
  border-right: 1px solid var(--home-line);
}

.cc-trust-item:first-child {
  padding-left: 8px;
}

.cc-trust-item:last-child {
  padding-right: 8px;
  border-right: 0;
}

.cc-round-icon {
  display: grid;
  width: 44px;
  height: 44px;
  color: #fff;
  border-radius: 50%;
  place-items: center;
}

.cc-round-icon .cc-icon {
  width: 24px;
  height: 24px;
}

.cc-round-icon-blue {
  background: var(--home-blue);
}

.cc-round-icon-green {
  background: var(--home-green);
}

.cc-trust-item h2 {
  margin-bottom: 3px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.25;
}

.cc-trust-item p {
  margin-bottom: 0;
  color: var(--home-muted);
  font-size: 10px;
  line-height: 1.4;
}

/* Services */
.cc-services {
  padding-top: 28px;
  padding-bottom: 12px;
}

.cc-services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
}

.cc-service-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(7, 32, 85, .055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cc-service-card:hover {
  border-color: #c8d4e6;
  box-shadow: var(--home-shadow-hover);
  transform: translateY(-5px);
}

.cc-service-image {
  position: relative;
  height: 96px;
}

.cc-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-service-icon {
  position: absolute;
  bottom: -18px;
  left: 13px;
  display: grid;
  width: 38px;
  height: 38px;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(7, 32, 85, .16);
  place-items: center;
}

.cc-service-icon .cc-icon {
  width: 20px;
  height: 20px;
  stroke-width: 1.9;
}

.cc-service-icon-blue {
  background: var(--home-blue);
}

.cc-service-icon-green {
  background: var(--home-green);
}

.cc-service-icon-amber {
  background: var(--home-amber);
}

.cc-service-icon-violet {
  background: var(--home-violet);
}

.cc-service-content {
  display: flex;
  flex-direction: column;
  min-height: 140px;
  padding: 25px 13px 12px;
}

.cc-service-content h3 {
  margin-bottom: 5px;
  font-size: 12.5px;
  font-weight: 820;
  letter-spacing: -.02em;
  line-height: 1.18;
}

.cc-service-content p {
  margin-bottom: 10px;
  color: var(--home-muted);
  font-size: 9.8px;
  line-height: 1.42;
}

.cc-service-content a,
.cc-text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  color: var(--home-blue);
  font-size: 10px;
  font-weight: 800;
}

.cc-service-content a .cc-icon,
.cc-text-link .cc-icon {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.cc-service-content a:hover .cc-icon,
.cc-text-link:hover .cc-icon {
  transform: translateX(3px);
}

/* About */
.cc-about {
  padding-top: 10px;
  padding-bottom: 22px;
}

.cc-about-grid {
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  gap: 38px;
}

.cc-about-media {
  position: relative;
  min-height: 230px;
}

.cc-about-media picture,
.cc-about-media img {
  width: 100%;
  height: 230px;
}

.cc-about-media img {
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
}

.cc-about-badge {
  position: absolute;
  bottom: 12px;
  left: -13px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: var(--home-navy);
  background: #fff;
  border: 1px solid #e9eef5;
  border-radius: 10px;
  box-shadow: var(--home-shadow);
  font-size: 10px;
  font-weight: 760;
  line-height: 1.35;
}

.cc-about-badge .cc-icon {
  width: 30px;
  height: 30px;
  color: var(--home-green);
}

.cc-about-copy h2 {
  margin-bottom: 9px;
  font-size: clamp(24px, 2.5vw, 28px);
  font-weight: 830;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.cc-about-copy>p:not(.cc-eyebrow) {
  margin-bottom: 10px;
  color: var(--home-muted);
  font-size: 11.5px;
  line-height: 1.55;
}

.cc-check-list {
  display: grid;
  gap: 7px;
  padding: 0;
  margin-bottom: 12px;
  list-style: none;
  color: #3c4a65;
  font-size: 10.7px;
}

.cc-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.cc-check-list .cc-icon {
  width: 17px;
  height: 17px;
  color: var(--home-green);
}

/* Process */
.cc-process-section {
  padding: 2px 0 19px;
}

.cc-process-panel {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: center;
  min-height: 108px;
  padding: 13px 18px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(7, 32, 85, .05);
}

.cc-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 4px 10px;
}

.cc-step-number {
  position: absolute;
  z-index: 2;
  top: -3px;
  left: 0;
  display: grid;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--home-blue);
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
  place-items: center;
}

.cc-step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--home-blue);
  background: var(--home-pale);
  border-radius: 50%;
  place-items: center;
}

.cc-step-icon .cc-icon {
  width: 29px;
  height: 29px;
}

.cc-process-step h3 {
  margin-bottom: 3px;
  font-size: 11.5px;
  font-weight: 820;
  line-height: 1.25;
}

.cc-process-step p {
  margin-bottom: 0;
  color: var(--home-muted);
  font-size: 9.5px;
  line-height: 1.42;
}

.cc-process-arrow {
  color: #a9c5f7;
}

.cc-process-arrow .cc-icon {
  width: 26px;
  height: 26px;
}

/* Expectation cards */
.cc-expect {
  padding-top: 0;
  padding-bottom: 20px;
}

.cc-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cc-expect-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  min-height: 104px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(7, 32, 85, .05);
}

.cc-expect-mark {
  display: grid;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--home-green);
  border-radius: 11px;
  font-size: 11px;
  font-weight: 850;
  place-items: center;
}

.cc-expect-card h3 {
  margin-bottom: 4px;
  font-size: 12.5px;
  font-weight: 820;
}

.cc-expect-card p {
  margin-bottom: 0;
  color: var(--home-muted);
  font-size: 10px;
  line-height: 1.45;
}

/* CTA */
.cc-cta-section {
  padding-bottom: 26px;
}

.cc-cta-panel {
  position: relative;
  display: grid;
  min-height: 138px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(115deg, #0758d8 0%, #062c81 58%, #071b50 100%);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(7, 31, 95, .2);
  place-items: center;
}

.cc-cta-panel::after {
  position: absolute;
  right: -60px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, .035), 0 0 0 58px rgba(255, 255, 255, .025);
}

.cc-cta-copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
  padding: 20px 18px;
  text-align: center;
}

.cc-cta-copy h2 {
  margin-bottom: 2px;
  color: #fff;
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 830;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.cc-cta-copy p {
  margin-bottom: 9px;
  color: #e7efff;
  font-size: 11.5px;
}

.cc-actions-centered {
  justify-content: center;
  gap: 10px;
}

.cc-cta-panel .cc-button {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 10.5px;
}

.cc-button-light {
  color: var(--home-blue) !important;
  background: #fff;
  box-shadow: 0 6px 14px rgba(1, 20, 65, .18);
}

.cc-button-ghost {
  color: #fff !important;
  background: transparent;
  border-color: rgba(255, 255, 255, .8);
}

.cc-button-ghost:hover {
  background: rgba(255, 255, 255, .1);
}

.cc-cta-caddy {
  position: absolute;
  z-index: 2;
  bottom: -20px;
  left: -5px;
  width: 235px;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(1, 22, 65, .22));
}

.cc-cta-orbit {
  position: absolute;
  z-index: 2;
  right: 45px;
  display: grid;
  width: 75px;
  height: 75px;
  color: #a7d9ff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  place-items: center;
}

.cc-cta-orbit .cc-icon {
  width: 39px;
  height: 39px;
}

.cc-cta-sparkle {
  position: absolute;
  z-index: 2;
  color: #88c1ff;
  font-size: 22px;
}

.cc-cta-sparkle-one {
  top: 24px;
  left: 260px;
}

.cc-cta-sparkle-two {
  right: 145px;
  bottom: 22px;
  font-size: 14px;
}

/* Footer */
.cc-site-footer {
  padding: 42px 0 20px;
  color: #c9d5ee;
  background: #061742;
}

.cc-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr .85fr 1.15fr;
  gap: 42px;
}

.cc-brand-footer {
  margin-bottom: 12px;
  color: #fff !important;
}

.cc-brand-footer .cc-brand-words strong {
  font-size: 26px;
}

.cc-footer-brand p {
  max-width: 285px;
  margin-bottom: 0;
  color: #b9c7e3;
  font-size: 12px;
  line-height: 1.65;
}

.cc-site-footer h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.cc-site-footer li+li {
  margin-top: 7px;
}

.cc-site-footer li a,
.cc-footer-contact p,
.cc-footer-contact a {
  color: #c9d5ee;
  font-size: 11.5px;
}

.cc-site-footer a:hover {
  color: #fff;
}

.cc-footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
}

.cc-footer-contact .cc-icon {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: #7bb8ff;
}

.cc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 17px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #96a9cd;
  font-size: 10.5px;
}

.cc-footer-bottom p {
  margin-bottom: 0;
}

.cc-footer-bottom div {
  display: flex;
  gap: 18px;
}

@media (max-width: 1080px) {
  .cc-header-inner {
    gap: 14px;
  }

  .cc-primary-nav>ul {
    gap: 6px;
  }

  .cc-header-phone {
    padding-inline: 12px;
  }

  .cc-brand-mark {
    width: 49px;
  }

  .cc-brand-words strong {
    font-size: 23px;
  }

  .cc-hero-copy {
    padding-left: 8px;
  }

  .cc-trust-item {
    padding-inline: 10px;
  }
}

@media (max-width: 980px) {
  .cc-header-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cc-header-topbar-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .cc-header-topbar-pills {
    justify-content: flex-start;
  }

  .cc-header-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .cc-header-actions {
    display: flex;
  }

  .cc-header-cta {
    display: none;
  }

  .cc-site-header .cc-menu-toggle {
    display: inline-grid !important;
    justify-self: end;
  }

  .cc-primary-nav {
    position: absolute;
    z-index: 100;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    justify-self: stretch;
    width: 100vw;
    max-width: 100vw;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 10px 24px 24px;
    background: #fff;
    border-top: 1px solid var(--home-line);
    box-shadow: 0 16px 28px rgba(7, 32, 85, .12);
  }

  .cc-primary-nav.is-open {
    display: block;
  }

  .cc-primary-nav>ul {
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .cc-primary-nav>ul>li {
    display: block;
    min-height: 0;
    border-bottom: 1px solid #edf1f6;
  }

  .cc-primary-nav>ul>li>a,
  .cc-submenu-row>a {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
  }

  .cc-primary-nav>ul>li>a::after,
  .cc-submenu-row>a::after {
    display: none;
  }

  .cc-submenu-row {
    width: 100%;
  }

  .cc-submenu-toggle {
    width: 48px;
    flex: 0 0 48px;
  }

  .cc-submenu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 8px !important;
    overflow: hidden;
    visibility: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: max-height .25s ease, padding .25s ease;
  }

  .cc-has-submenu:hover .cc-submenu,
  .cc-has-submenu:focus-within .cc-submenu {
    max-height: 0;
    padding-block: 0 !important;
  }

  .cc-has-submenu.is-open .cc-submenu {
    max-height: 360px;
    padding-block: 4px 12px !important;
  }

  .cc-submenu a {
    min-height: 42px;
    padding: 10px 12px;
  }

  .cc-hero-grid {
    grid-template-columns: 47% 53%;
  }

  .cc-home-page .cc-hero h1 {
    font-size: 45px;
  }

  .cc-hero-copy {
    padding-right: 24px;
  }

  .cc-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .cc-service-image {
    height: 155px;
  }

  .cc-service-content {
    min-height: 150px;
    padding: 27px 17px 15px;
  }

  .cc-service-content h3 {
    font-size: 15px;
  }

  .cc-service-content p {
    font-size: 11.5px;
  }

  .cc-service-content a {
    font-size: 11.5px;
  }

  .cc-trust-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .cc-trust-item {
    padding-block: 10px;
  }

  .cc-trust-item:nth-child(2) {
    border-right: 0;
  }

  .cc-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--home-line);
  }

  .cc-process-panel {
    grid-template-columns: 1fr 24px 1fr 24px 1fr;
    padding-inline: 10px;
  }

  .cc-process-step {
    grid-template-columns: 50px 1fr;
    gap: 10px;
    padding-inline: 6px;
  }

  .cc-step-icon {
    width: 50px;
    height: 50px;
  }

  .cc-step-icon .cc-icon {
    width: 25px;
    height: 25px;
  }

  .cc-cta-caddy {
    width: 210px;
    left: -28px;
  }

  .cc-cta-orbit {
    right: 24px;
  }
}

@media (max-width: 760px) {
  body.cc-menu-open {
    overflow: hidden;
  }

  .admin-bar .cc-site-header {
    top: 46px;
  }

  .cc-header-topbar {
    display: none;
  }

  .cc-container {
    width: min(calc(100% - 28px), var(--home-container));
  }

  .cc-header-topbar {
    display: none;
  }

  .cc-header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 9px;
    min-height: 70px;
    padding-block: 9px;
  }

  .cc-brand {
    gap: 5px;
  }

  .cc-brand-mark {
    width: 41px;
    height: 40px;
  }

  .cc-brand-words strong {
    font-size: 20px;
  }

  .cc-brand-words small {
    font-size: 8px;
  }

  .cc-mobile-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 13px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--home-green) 0%, #3b9412 100%);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(70, 157, 20, .25);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
  }

  .cc-mobile-quote .cc-icon {
    width: 15px;
    height: 15px;
  }

  .cc-home-page .cc-menu-toggle,
  .cc-site-header .cc-menu-toggle {
    width: 42px !important;
    height: 42px !important;
    color: #fff !important;
    background: var(--home-navy) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(6, 25, 77, .2) !important;
  }

  .cc-menu-toggle .cc-icon {
    width: 21px;
    height: 21px;
  }

  .cc-header-phone {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
  }

  .cc-header-phone span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .cc-primary-nav {
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    width: auto;
    max-width: none;
    max-height: calc(100dvh - 96px);
    padding: 10px;
    background: rgba(255, 255, 255, .985);
    border: 1px solid rgba(218, 227, 240, .95);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(6, 25, 77, .2);
    backdrop-filter: blur(18px);
  }

  .cc-primary-nav>ul>li {
    border-bottom: 0;
  }

  .cc-primary-nav>ul>li>a,
  .cc-submenu-row>a {
    min-height: 48px;
    padding-inline: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 760;
  }

  .cc-primary-nav a.is-active {
    color: var(--home-blue);
    background: var(--home-pale);
    box-shadow: none;
  }

  .cc-submenu-toggle {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 12px;
  }

  .cc-mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1px solid var(--home-line);
  }

  .cc-mobile-menu-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 9px 10px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 800;
    text-align: left;
  }

  .cc-mobile-menu-actions .cc-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .cc-mobile-menu-quote {
    color: #fff !important;
    background: linear-gradient(135deg, var(--home-green), #3b9412);
  }

  .cc-mobile-menu-phone {
    color: var(--home-navy) !important;
    background: var(--home-pale);
    border: 1px solid #dce7f7;
  }

  .cc-mobile-menu-phone span {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .cc-mobile-menu-phone small {
    color: var(--home-muted);
    font-size: 9px;
    font-weight: 650;
  }

  .cc-header-actions {
    display: none;
  }

  .cc-home-page .cc-hero {
    background: #fff;
  }

  .cc-hero-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
  }

  .cc-hero-copy {
    width: 100%;
    padding: 40px 2px 28px;
  }

  .cc-home-page .cc-hero h1 {
    max-width: 620px;
    font-size: clamp(38px, 10.4vw, 48px);
  }

  .cc-home-page .cc-hero-lede {
    max-width: 620px;
    font-size: 14px;
    line-height: 1.55;
  }

  .cc-hero-media {
    width: calc(100% + 28px);
    height: 320px;
    margin-left: -14px;
  }

  .cc-hero-media::before {
    display: none;
  }

  .cc-hero-media img {
    object-position: 63% center;
  }

  .cc-trust-wrap {
    padding-top: 14px;
  }

  .cc-trust-panel {
    grid-template-columns: 1fr;
    padding: 9px 16px;
  }

  .cc-trust-item,
  .cc-trust-item:first-child,
  .cc-trust-item:last-child {
    padding: 13px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .cc-trust-item:last-child {
    border-bottom: 0;
  }

  .cc-trust-item:nth-child(2) {
    border-bottom: 1px solid var(--home-line);
  }

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

  .cc-trust-item p {
    font-size: 11.5px;
  }

  .cc-section {
    padding-block: 45px;
  }

  .cc-services {
    padding-top: 43px;
    padding-bottom: 26px;
  }

  .cc-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .cc-service-image {
    height: 145px;
  }

  .cc-service-content {
    min-height: 167px;
  }

  .cc-about {
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .cc-about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cc-about-media,
  .cc-about-media picture,
  .cc-about-media img {
    height: 340px;
  }

  .cc-about-badge {
    left: 12px;
  }

  .cc-about-copy h2 {
    font-size: 30px;
  }

  .cc-about-copy>p:not(.cc-eyebrow) {
    font-size: 14px;
  }

  .cc-check-list {
    gap: 10px;
    font-size: 13px;
  }

  .cc-text-link {
    font-size: 13px;
  }

  .cc-process-section {
    padding-bottom: 40px;
  }

  .cc-process-panel {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .cc-process-step {
    grid-template-columns: 60px 1fr;
    gap: 14px;
    padding: 8px 4px;
  }

  .cc-step-icon {
    width: 58px;
    height: 58px;
  }

  .cc-process-step h3 {
    font-size: 14px;
  }

  .cc-process-step p {
    font-size: 12px;
  }

  .cc-process-arrow {
    display: grid;
    height: 25px;
    margin-left: 17px;
    place-items: center;
    transform: rotate(90deg);
  }

  .cc-expect {
    padding-bottom: 34px;
  }

  .cc-expect-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cc-expect-card {
    min-height: 0;
  }

  .cc-expect-card h3 {
    font-size: 14px;
  }

  .cc-expect-card p {
    font-size: 12px;
  }

  .cc-cta-section {
    padding-bottom: 0;
  }

  .cc-cta-panel {
    min-height: 300px;
    border-radius: 13px;
  }

  .cc-cta-copy {
    align-self: start;
    padding: 35px 20px;
  }

  .cc-cta-copy p {
    font-size: 13px;
  }

  .cc-cta-caddy {
    bottom: -50px;
    left: 50%;
    width: 250px;
    transform: translateX(-50%);
    opacity: .84;
  }

  .cc-cta-orbit,
  .cc-cta-sparkle {
    display: none;
  }

  .cc-site-footer {
    padding-top: 45px;
  }

  .cc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 24px;
  }
}

@media (max-width: 520px) {
  .cc-brand-mark {
    width: 39px;
  }

  .cc-brand-words strong {
    font-size: 18px;
  }

  .cc-menu-toggle,
  .cc-header-phone {
    width: 42px;
    height: 42px;
  }

  .cc-hero-copy {
    padding-top: 34px;
  }

  .cc-home-page .cc-hero h1 {
    font-size: clamp(37px, 11.2vw, 46px);
    overflow-wrap: anywhere;
  }

  .cc-actions {
    flex-direction: column;
  }

  .cc-button {
    width: 100%;
    min-height: 48px;
  }

  .cc-hero-notes {
    display: grid;
    gap: 8px;
    font-size: 11.5px;
  }

  .cc-hero-media {
    height: 280px;
  }

  .cc-services-grid {
    grid-template-columns: 1fr;
  }

  .cc-service-image {
    height: 205px;
  }

  .cc-service-content {
    min-height: 150px;
    padding: 29px 18px 16px;
  }

  .cc-service-content h3 {
    font-size: 17px;
  }

  .cc-service-content p {
    font-size: 12.5px;
  }

  .cc-service-content a {
    font-size: 12.5px;
  }

  .cc-about-media,
  .cc-about-media picture,
  .cc-about-media img {
    height: 280px;
  }

  .cc-about-badge {
    right: 10px;
    left: 10px;
    justify-content: center;
  }

  .cc-process-panel {
    padding-inline: 14px;
  }

  .cc-cta-panel {
    min-height: 350px;
  }

  .cc-cta-copy h2 {
    font-size: 28px;
  }

  .cc-cta-caddy {
    width: 280px;
  }

  .cc-footer-grid {
    grid-template-columns: 1fr;
  }

  .cc-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .cc-brand-mark {
    display: none;
  }

  .cc-brand-words strong {
    font-size: 19px;
  }

  .cc-header-inner {
    gap: 6px;
  }

  .cc-mobile-quote {
    padding-inline: 11px;
  }

  .cc-mobile-menu-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cc-home-page *,
  .cc-home-page *::before,
  .cc-home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
