@charset "UTF-8";
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/RADOMIR TINKOV - GILROY-LIGHT.OTF") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/GILROY-REGULAR.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/GILROY-SEMIBOLD.TTF") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/RADOMIR TINKOV - GILROY-EXTRABOLD.OTF") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 48px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  gap: 12px;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.btn .btn-avatar {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.btn .btn-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.btn .btn-avatar .btn-avatar-online {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border: 1px solid currentColor;
  border-radius: 3px;
  display: block;
}
.btn .btn-text {
  flex: 1;
}
.btn .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}
.btn .btn-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.btn-primary {
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  color: #FFFFFF;
}
.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-secondary {
  background: linear-gradient(90deg, #199CA8 0%, #28CFD7 100%);
  border-color: transparent;
  color: #FFFFFF;
}
.btn-secondary:hover {
  filter: brightness(1.08);
}
.btn-secondary:active {
  filter: brightness(0.98);
}

.btn.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.btn.btn--loading {
  position: relative;
  isolation: isolate;
  pointer-events: none;
  cursor: wait;
}
.btn.btn--loading:hover, .btn.btn--loading:active {
  transform: none;
  box-shadow: none;
  filter: none;
}
.btn.btn--loading .btn-text,
.btn.btn--loading .btn-avatar,
.btn.btn--loading .btn-icon {
  position: relative;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.btn.btn--loading::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.btn.btn--loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 1.375rem;
  height: 1.375rem;
  margin: -0.6875rem 0 0 -0.6875rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-top-color: #fff;
  border-right-color: rgba(255, 255, 255, 0.6);
  animation: cltr-btn-spin 0.65s linear infinite;
}

@keyframes cltr-btn-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn.btn--loading::after {
    animation-duration: 1.25s;
  }
}
a.btn {
  text-decoration: none;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.field input[type=text],
.field input[type=email],
.field input[type=password] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #FFFFFF;
}

.field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #FFFFFF;
  resize: vertical;
}

.field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #FFFFFF;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #888 50%), linear-gradient(135deg, #888 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox span {
  position: relative;
  padding-left: 28px;
}

.checkbox span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #FFFFFF;
  box-sizing: border-box;
}

.checkbox input[type=checkbox]:checked + span::before {
  background: #199CA8;
  border-color: #199CA8;
}

.checkbox input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 6px;
  height: 10px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
}

.checkbox input[type=checkbox]:focus-visible + span::before {
  box-shadow: 0 0 0 3px rgba(25, 156, 168, 0.3);
}

.form-field-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-field-checkbox .field_container {
  display: flex;
  flex-direction: column;
}

.checkbox-terms-link {
  color: #199CA8;
  text-decoration: underline;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal[aria-hidden=false] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 8px;
  width: min(640px, 92%);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Appear animations */
.modal[aria-hidden=false] .modal__backdrop {
  animation: modal-backdrop-in 200ms ease forwards;
}

.modal[aria-hidden=false] .modal__dialog {
  animation: modal-zoom-in 260ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes modal-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-zoom-in {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
/* Success variant (used by forms.js) */
.modal-success {
  padding: clamp(20px, 3vw, 36px);
}

.modal-success .modal-success__content {
  display: grid;
  gap: 10px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.modal-success .modal-success__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  margin-bottom: 6px;
}

.modal-success .modal-success__title {
  margin: 0;
  font-size: clamp(18px, 3.2vw, 24px);
  font-weight: 800;
}

.modal-success .modal-success__text {
  margin: 0;
  color: #4b5563;
}

/**
 * Global error toast — bottom-left, slide-in animation, error icon, auto-closes in 10s.
 */
.error-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: min(400px, 100vw - 48px);
  padding: 14px 18px;
  background: #fff;
  color: #1f2937;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(239, 68, 68, 0.25);
  transform: translateX(calc(-100% - 48px));
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease, visibility 0.3s;
}
.error-toast--visible {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.error-toast__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-toast__icon-svg {
  width: 100%;
  height: 100%;
}
.error-toast__message {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}

.bp-slider {
  width: 100%;
}

.bp-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px;
  border-radius: 12px;
  margin: 0 auto;
  width: fit-content !important;
  left: 50% !important;
  transform: translateX(-50%);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: unset !important;
  background: #F25220;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #F25220;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  /* Circular nav buttons with a small arrow inside */
  color: #F25220;
  /* arrow color */
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  /* Make the built-in Swiper icon smaller */
  font-size: 14px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(242, 82, 32, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.swiper-button-disabled {
  opacity: 0.45;
  pointer-events: none;
}

html.announcement-bar-active {
  --announcement-bar-height: 92px;
}

html.announcement-bar-dismissed .site-announcement-bar {
  display: none !important;
}

.site-announcement-bar {
  position: relative;
  z-index: calc(1100 + 1);
  width: 100%;
  flex-shrink: 0;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-height: 320px;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, padding 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .site-announcement-bar {
    transition: max-height 0.15s ease, opacity 0.1s ease, padding 0.1s ease;
  }
}
.site-announcement-bar.is-collapsing {
  max-height: 0 !important;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}
.site-announcement-bar__inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 10px 52px;
}
@media screen and (max-width: 768px) {
  .site-announcement-bar__inner {
    padding: 8px 44px;
  }
}
.site-announcement-bar__text {
  margin: 0 auto;
  max-width: 62rem;
  text-align: center;
}
.site-announcement-bar__headline {
  margin: 0 0 4px;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.site-announcement-bar__detail {
  margin: 0;
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.45;
  opacity: 0.95;
}
.site-announcement-bar__close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.site-announcement-bar__close:hover {
  background: rgba(255, 255, 255, 0.28);
}
.site-announcement-bar__close:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}
@media screen and (max-width: 768px) {
  .site-announcement-bar__close {
    width: 30px;
    height: 30px;
    right: 8px;
  }
}
.site-announcement-bar__close-icon {
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  margin-top: -1px;
}

header {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}
header .btn {
  color: #FFFFFF;
}
header .btn:hover {
  color: #FFFFFF;
}
header .site-header-wrapper {
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
header.sticky-mode {
  top: 20px;
  z-index: 1100;
}
header.sticky-mode .btn {
  color: #FFFFFF;
}
header.sticky-mode .btn:hover {
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  header.sticky-mode {
    top: 0px;
  }
}
header.sticky-mode .site-header-wrapper {
  opacity: 0;
  padding: 0 40px;
  pointer-events: auto;
  transform: translateY(-82px);
}
@media screen and (max-width: 768px) {
  header.sticky-mode .site-header-wrapper {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  header.sticky-mode .site-header-wrapper .container {
    padding: 0;
  }
}
header.sticky-mode .site-header-container {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border-radius: 40px;
  padding: 16px 32px;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 768px) {
  header.sticky-mode .site-header-container {
    border-radius: 0;
  }
}
header.sticky-mode.exit {
  position: sticky;
}
header.sticky-mode.exit .site-header-wrapper {
  transform: translateY(-82px);
  opacity: 0;
}
header.sticky-mode.entered {
  position: sticky;
}
header.sticky-mode.entered .site-header-wrapper {
  transform: translateY(0);
  opacity: 1;
}
header.sticky-mode a:not(.btn):not(.quick_link),
header.sticky-mode .nav-link {
  color: #1D1D1D;
  transition: color 0.3s ease;
}
header.sticky-mode .site-title svg .chars_path {
  fill: #1D1D1D;
  transition: fill 0.3s ease;
}
header .site-header-wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
}
header .site-header-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0px;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
header a:not(.btn):not(.quick_link) {
  color: #FFFFFF;
  transition: color 0.3s ease 0.4s;
}
header a:not(.btn):not(.quick_link):hover {
  color: #F25220;
  transition: color 0.3s ease;
}
header .nav-link {
  color: #FFFFFF;
  transition: color 0.3s ease 0.4s;
}
header .nav-link:hover {
  color: #F25220;
  transition: color 0.3s ease;
}

body.header-dark-text header:not(.sticky-mode) a:not(.btn):not(.quick_link),
body.header-dark-text header:not(.sticky-mode) .nav-link {
  color: #1D1D1D;
  transition: color 0.3s ease;
}
body.header-dark-text header:not(.sticky-mode) a:not(.btn):not(.quick_link):hover,
body.header-dark-text header:not(.sticky-mode) .nav-link:hover {
  color: #F25220;
}
body.header-dark-text header:not(.sticky-mode) .site-title svg .chars_path {
  fill: #1D1D1D;
  transition: fill 0.3s ease;
}

.site-title {
  display: block;
  width: 110px;
  height: fit-content;
}
.site-title svg .chars_path {
  fill: #FFFFFF;
  transition: fill 0.3s ease 0.4s;
}

.header-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  padding: 10px 0;
}
.header-banner p {
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  font-weight: 600;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-end;
}
.header-cta .header-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  white-space: nowrap;
}
.header-cta .header-contact a:hover {
  color: #FFF;
}
.header-cta .header-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-navigation {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.mobile-burger {
  display: none;
}

.mobile-panel {
  display: none;
}

@media screen and (max-width: 1024px) {
  header .site-header-container {
    grid-template-columns: 1fr auto;
  }
  .header-navigation--desktop,
  .header-cta {
    display: none;
  }
  .site-header .site-header-container {
    padding: 12px 0;
  }
  .mobile-panel {
    display: block;
  }
  .mobile-burger {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #F25220;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
  }
  .mobile-burger__bar {
    display: block;
    width: 18px;
    height: 2px;
    background: #FFFFFF;
    margin: 0;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .mobile-burger.open .mobile-burger__bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .mobile-burger.open .mobile-burger__bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-burger.open .mobile-burger__bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
/* Navigation (cltr-like) */
.site-header .primary-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.site-header .custom_menu_container .menu_list {
  display: flex;
  gap: 16px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
}
.site-header .custom_menu_container .first_level_menu_item {
  position: static;
}
.site-header .custom_menu_container .first_level_menu_item > a,
.site-header .custom_menu_container .first_level_menu_item > .nav-link {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.site-header .custom_menu_container .with_submenu > .nav-link {
  position: relative;
  z-index: 2;
  padding-right: 18px;
}
.site-header .custom_menu_container .with_submenu > .nav-link::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.site-header .custom_menu_container .with_submenu:hover > .nav-link::after, .site-header .custom_menu_container .with_submenu.menu-item-active > .nav-link::after {
  transform: translateY(-60%) rotate(225deg);
}
.site-header .custom_menu_container .with_submenu .mega_menu_container {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1;
  pointer-events: none;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

/* Header expansion on menu hover */
header.mega-menu-active .site-header-wrapper,
header.mega-menu-active .site-header-container,
header.mega-menu-active .header-navigation,
header.mega-menu-active .custom_menu_container {
  overflow: visible;
}
header.mega-menu-active .site-header-container {
  background: #FFFFFF;
  backdrop-filter: blur(10px);
  padding: 22px 34px 0;
  border-radius: 28px 28px 0 0;
  transition: padding 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), border-radius 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.32s ease;
}
header.mega-menu-active .site-title,
header.mega-menu-active .header-cta {
  position: relative;
  z-index: 2;
}
header.mega-menu-active.sticky-mode .site-header-container {
  border-radius: 28px 28px 0 0;
  background: #FFFFFF;
}
header.mega-menu-active .custom_menu_container .first_level_menu_item > a,
header.mega-menu-active .custom_menu_container .with_submenu > .nav-link {
  color: #0c0c0e;
}
header.mega-menu-active .custom_menu_container .first_level_menu_item > a:hover,
header.mega-menu-active .custom_menu_container .with_submenu > .nav-link:hover {
  color: #F25220;
}
header.mega-menu-active .custom_menu_container .with_submenu.menu-item-active > .nav-link {
  color: #F25220;
}
header.mega-menu-active a:not(.btn):not(.quick_link),
header.mega-menu-active .nav-link {
  color: #0c0c0e;
  transition: color 0.3s ease;
}
header.mega-menu-active a:not(.btn):not(.quick_link):hover,
header.mega-menu-active .nav-link:hover {
  color: #F25220;
}
header.mega-menu-active .header-cta .header-contact a {
  color: #0c0c0e;
}
header.mega-menu-active .header-cta .header-contact a:hover {
  color: #F25220;
}
header.mega-menu-active .btn {
  color: #FFFFFF;
}
header.mega-menu-active .btn:hover {
  color: #FFFFFF;
}
header.mega-menu-active .site-title svg .chars_path {
  fill: #0c0c0e;
  transition: fill 0.3s ease;
}

header.site-header.sticky-mode.mega-menu-active .site-header-container {
  padding-left: 34px;
  padding-right: 34px;
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 900;
  backdrop-filter: blur(10px);
}

body.mega-menu-active .page-overlay {
  opacity: 1;
  pointer-events: auto;
}

.site-header .custom_menu_container .with_submenu.menu-item-active > .nav-link {
  color: #F25220;
  font-weight: 600;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container--dropdown.mega_menu_container {
  border-radius: 0 0 28px 28px;
  transition: max-height 0.36s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s, padding 0.36s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s, background 0.22s ease, box-shadow 0.28s ease;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container--dropdown .mega-menu-services {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  align-items: stretch;
  background: transparent;
  border-radius: 0 0 28px 28px;
  box-shadow: none;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity 0.2s ease, transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.site-header .custom_menu_container .with_submenu:hover > .mega_menu_container--dropdown, .site-header .custom_menu_container .with_submenu.menu-item-active > .mega_menu_container--dropdown {
  padding: 20px 0 0;
  background: #FFFFFF;
  max-height: 620px;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  box-shadow: 0 50px 90px -40px rgba(12, 12, 14, 0.4);
  z-index: 1;
  pointer-events: auto;
  transition: max-height 0.48s cubic-bezier(0.22, 0.61, 0.36, 1), padding 0.48s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.32s ease 0.04s, box-shadow 0.48s cubic-bezier(0.22, 0.61, 0.36, 1) 0.06s;
}
.site-header .custom_menu_container .with_submenu:hover > .mega_menu_container--dropdown .mega-menu-services, .site-header .custom_menu_container .with_submenu.menu-item-active > .mega_menu_container--dropdown .mega-menu-services {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.14s, transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1) calc(0.14s - 0.04s);
}

.mega-menu-services__left {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 34px 30px;
  min-width: 0;
}
.mega-menu-services__sectitle {
  margin: 0 0 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a6a6b0;
  font-weight: 700;
}
.mega-menu-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mega-menu-services__svc {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  cursor: pointer;
  color: inherit;
}
.mega-menu-services__svc:hover {
  background: #fff4ef;
}
.mega-menu-services__svc:hover .mega-menu-services__svc-icon {
  background: #F25220;
  transform: rotate(-6deg) scale(1.05);
}
.mega-menu-services__svc:hover .mega-menu-services__svc-icon svg {
  stroke: #FFFFFF;
}
.mega-menu-services__svc:hover .mega-menu-services__svc-arr {
  opacity: 1;
  transform: none;
}
.mega-menu-services__svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #f4f1ec;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mega-menu-services__svc-icon svg {
  width: 24px;
  height: 24px;
  stroke: #0c0c0e;
  fill: none;
  transition: stroke 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mega-menu-services__svc-copy {
  display: block;
  min-width: 0;
}
.mega-menu-services__svc-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 600;
  color: #0c0c0e;
  margin-bottom: 3px;
  line-height: 1.25;
}
.mega-menu-services__svc-arr {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #F25220;
}
.mega-menu-services__svc-desc {
  display: block;
  font-size: 12.5px;
  color: #7a7a85;
  line-height: 1.45;
}
.mega-menu-services__svc-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #199CA8;
  background: #e7f6f7;
  padding: 3px 8px;
  border-radius: 100px;
}
.mega-menu-services__left-foot {
  margin-top: auto;
}
.mega-menu-services__divider {
  height: 1px;
  background: rgba(12, 12, 14, 0.08);
  margin: 22px 0 18px;
}
.mega-menu-services__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mega-menu-services__bottom-row--reviews {
  margin-top: 16px;
}
.mega-menu-services__quick {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mega-menu-services__quick a.quick_link {
  font-size: 13px;
  font-weight: 500;
  color: #0c0c0e;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(12, 12, 14, 0.08);
  background: #FFFFFF;
  transition: border-color 0.3s ease, color 0.3s ease, filter 0.3s ease;
}
.mega-menu-services__quick a.quick_link:hover {
  border-color: #F25220;
  color: #F25220;
}
.mega-menu-services__quick a.quick_link.quick_link--primary {
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  border-color: transparent;
  color: #FFFFFF;
  font-weight: 600;
}
.mega-menu-services__quick a.quick_link.quick_link--primary:hover {
  border-color: transparent;
  color: #FFFFFF;
  filter: brightness(1.08);
}
.mega-menu-services__reviews {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.mega-menu-services__rev {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.mega-menu-services__rev b {
  font-size: 13px;
  color: #0c0c0e;
  font-weight: 700;
}
.mega-menu-services__rev small {
  font-size: 12px;
  color: #7a7a85;
}
.mega-menu-services__rev-logo {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 11px;
  overflow: hidden;
}
.mega-menu-services__rev-logo svg {
  width: 14px;
  height: auto;
  display: block;
}
.mega-menu-services__rev-logo--google {
  background: #FFFFFF;
  border: 1px solid rgba(12, 12, 14, 0.08);
}
.mega-menu-services__rev-logo--yelp {
  background: #d32323;
  color: #FFFFFF;
}
.mega-menu-services__rev-logo--yelp svg {
  width: 12px;
  filter: brightness(0) invert(1);
}
.mega-menu-services__rev-stars {
  color: #fbbf24;
  font-size: 12px;
  letter-spacing: 1px;
}
.mega-menu-services__right {
  position: relative;
  padding: 30px;
  min-width: 0;
  background: linear-gradient(160deg, #16161c, #0c0c0e);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mega-menu-services__rgrid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(90% 80% at 70% 20%, #000, transparent 90%);
  pointer-events: none;
}
.mega-menu-services__feat {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  flex: 1;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  text-decoration: none;
  color: #FFFFFF;
}
.mega-menu-services__feat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mega-menu-services__feat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.1) 30%, rgba(12, 12, 14, 0.88));
  z-index: 1;
}
.mega-menu-services__feat:hover img {
  transform: scale(1.06);
}
.mega-menu-services__feat:hover .mega-menu-services__feat-go {
  transform: translate(4px, -4px);
}
.mega-menu-services__feat-badge {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: auto;
}
.mega-menu-services__feat h3 {
  position: relative;
  z-index: 2;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 6px;
}
.mega-menu-services__feat p {
  position: relative;
  z-index: 2;
  font-size: 13px;
  color: #a6a6b0;
  line-height: 1.5;
  margin: 0;
  max-width: 90%;
}
.mega-menu-services__feat-go {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  font-size: 18px;
  line-height: 1;
}
.mega-menu-services__cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 18px;
  text-decoration: none;
  transition: background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mega-menu-services__cta:hover {
  background: rgba(242, 82, 32, 0.16);
  border-color: rgba(242, 82, 32, 0.4);
}
.mega-menu-services__cta b {
  display: block;
  font-size: 15px;
  color: #FFFFFF;
  font-weight: 600;
}
.mega-menu-services__cta small {
  font-size: 12px;
  color: #a6a6b0;
}
.mega-menu-services__cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #FFFFFF;
}
.mega-menu-services__cta-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.mega-menu-services__cta-arr {
  margin-left: auto;
  color: #ff7a4d;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header .custom_menu_container .with_submenu .mega_menu_container--dropdown .mega-menu-services, .site-header .custom_menu_container .with_submenu:hover > .mega_menu_container--dropdown .mega-menu-services, .site-header .custom_menu_container .with_submenu.menu-item-active > .mega_menu_container--dropdown .mega-menu-services {
    grid-template-columns: 1fr;
  }
  .mega-menu-services__left {
    display: block;
    height: auto;
    padding: 24px 0 0;
  }
  .mega-menu-services__left-foot {
    margin-top: 0;
  }
  .mega-menu-services__divider {
    margin-top: 22px;
  }
  .mega-menu-services__right {
    padding: 20px;
  }
  .mega-menu-services__grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1024px) {
  body.mobile-menu-open {
    overflow: hidden;
  }
  body.mobile-menu-open .page-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  body.mobile-menu-open .site-header-wrapper {
    background: #FFFFFF;
    z-index: calc(1100 + 1);
    max-height: calc(100dvh - var(--announcement-bar-height, 0px));
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  body.mobile-menu-open .site-header-container {
    padding: 18px 20px 0;
    border-bottom: 1px solid rgba(12, 12, 14, 0.08);
  }
  body.mobile-menu-open .site-header a:not(.btn),
  body.mobile-menu-open .site-header .nav-link {
    color: #1D1D1D;
  }
  body.mobile-menu-open .site-header .site-title svg .chars_path {
    fill: #1D1D1D;
  }
  body.mobile-menu-open .mobile-panel.open {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-panel {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    background: #FFFFFF;
  }
  .mobile-panel.open {
    max-height: 1400px;
  }
  .mobile-panel__inner {
    padding: 8px 16px 22px;
  }
  .mobile-panel__nav {
    display: block;
  }
  .mobile-panel__cta {
    display: flex;
    gap: 12px;
    padding: 14px 16px 0;
  }
  .mobile-panel__cta .btn {
    flex: 1;
    justify-content: center;
    padding-right: 20px;
  }
  .mobile-panel__cta .btn .btn-text {
    text-align: center;
    padding-right: 20px;
  }
  .mobile-panel__cta .btn .btn-text:first-child {
    padding-right: 0;
    padding-left: 20px;
  }
  .mobile-panel__reviews {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 16px 16px;
    border-top: 1px solid rgba(12, 12, 14, 0.08);
    margin-top: 6px;
  }
  .mobile-panel__rev {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
  }
  .mobile-panel__rev b {
    font-size: 13px;
    font-weight: 600;
  }
  .mobile-panel__rev small {
    font-size: 12px;
    color: #7a7a85;
  }
  .mobile-panel__rev-logo {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
    flex: 0 0 auto;
  }
  .mobile-panel__rev-logo svg {
    width: 14px;
    height: 14px;
  }
  .mobile-panel__rev-logo--google {
    background: #FFFFFF;
    border: 1px solid rgba(12, 12, 14, 0.08);
  }
  .mobile-panel__rev-logo--yelp {
    background: #d32323;
    color: #FFFFFF;
  }
  .mobile-panel__rev-stars {
    color: #fbbf24;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-menu-item {
    border-bottom: 1px solid rgba(12, 12, 14, 0.08);
  }
  .mobile-menu-item--open > .mobile-menu-link--toggle::after {
    content: "–";
  }
  .mobile-menu-item--open > .mobile-menu-sub {
    max-height: 600px;
  }
  .mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 17px 6px;
    font-size: 17px;
    font-weight: 600;
    color: #1D1D1D;
    text-decoration: none;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-menu-link--toggle::after {
    content: "+";
    font-size: 20px;
    color: #F25220;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    flex-shrink: 0;
    margin-left: 12px;
  }
  .mobile-menu-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .mobile-menu-sub__inner {
    padding: 2px 6px 14px;
  }
  .mobile-menu-svc {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 10px;
    border-radius: 13px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .mobile-menu-svc:active, .mobile-menu-svc:hover {
    background: #fff4ef;
  }
  .mobile-menu-svc__icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: #f4f1ec;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }
  .mobile-menu-svc__icon svg {
    width: 20px;
    height: 20px;
    stroke: #1D1D1D;
  }
  .mobile-menu-svc__copy {
    min-width: 0;
  }
  .mobile-menu-svc__copy b {
    font-size: 15px;
    font-weight: 600;
    color: #1D1D1D;
    display: block;
  }
  .mobile-menu-svc__copy small {
    font-size: 12px;
    color: #7a7a85;
    display: block;
    line-height: 1.4;
  }
  .mobile-menu-feat {
    margin: 14px 6px 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    text-decoration: none;
  }
  .mobile-menu-feat img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mobile-menu-feat::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(12, 12, 14, 0.85));
  }
  .mobile-menu-feat b {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
  }
}
.footer-cta-section {
  position: relative;
  min-height: 466px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  border-top-right-radius: 24px;
  border-top-left-radius: 24px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .footer-cta-section {
    min-height: 200px;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    margin-top: 40px;
  }
}

.site-footer-callout {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0 40px;
  background: #0c0c0e;
  color: #FFFFFF;
  margin-top: 80px;
}
.site-footer-callout .site-footer-callout__glow,
.site-footer-callout .site-footer-callout__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.site-footer-callout .site-footer-callout__glow {
  background: radial-gradient(45% 55% at 50% 40%, rgba(242, 82, 32, 0.42), transparent 62%);
}
.site-footer-callout .site-footer-callout__grid {
  opacity: 0.4;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 80%);
}
.site-footer-callout .site-footer-callout__inner {
  position: relative;
  z-index: 1;
}
.site-footer-callout .site-footer-callout__title {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.site-footer-callout .site-footer-callout__title span {
  color: #ff7a4d;
}
.site-footer-callout .site-footer-callout__desc {
  margin: 24px auto 36px;
  max-width: 50ch;
  font-size: 18px;
  line-height: 1.6;
  color: #d8d8e0;
}

.footer-cta-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.footer-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, #1f1f1f 0%, transparent 60%);
  z-index: 2;
}

.footer-cta-content {
  display: flex;
  gap: 100px;
  text-align: left;
  color: #FFFFFF;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer-cta-content {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.footer-cta-content .footer-cta-text {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer-cta-content .footer-cta-button {
  flex: 1 0 0;
  display: flex;
  width: 100%;
  height: fit-content;
  justify-content: flex-end;
}
.footer-cta-content .footer-cta-button button {
  padding: 10px 24px;
}
@media screen and (max-width: 768px) {
  .footer-cta-content .footer-cta-button {
    justify-content: start;
  }
  .footer-cta-content .footer-cta-button button {
    width: 100%;
  }
}
.footer-cta-content .footer-cta-title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.04;
  text-align: left;
  letter-spacing: -0.02em;
  text-transform: none;
}
.footer-cta-content .footer-cta-title span {
  color: #ff7a4d;
}
@media screen and (max-width: 1280px) {
  .footer-cta-content .footer-cta-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .footer-cta-content .footer-cta-title {
    font-size: 24px;
    line-height: 1.2;
  }
}
.footer-cta-content .footer-cta-subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  opacity: 0.9;
  text-align: left;
  color: rgb(136, 136, 136);
}
@media screen and (max-width: 768px) {
  .footer-cta-content .footer-cta-subtitle {
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
  }
}

.site-footer {
  background: #0c0c0e;
  color: rgb(136, 136, 136);
  padding: 48px 0 20px;
  margin-top: 80px;
}
.site-footer--with-video, .site-footer--with-callout {
  margin-top: 0;
}

.footer-main {
  padding: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .footer-main {
    padding: 0 0 40px;
  }
}

.footer-content-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
}
@media screen and (max-width: 1280px) {
  .footer-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-left .footer-logo {
  margin-bottom: 30px;
}
.footer-left .footer-logo svg {
  max-width: 150px;
  height: auto;
}
.footer-left .footer-contact-info p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 140%;
  margin-bottom: 20px;
  font-size: 14px;
}
.footer-left .footer-contact-info .footer-contact-details {
  margin-bottom: 20px;
}
.footer-left .footer-contact-info .footer-contact-details a {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 17px;
  transition: color 0.2s ease;
  font-weight: 600;
}
.footer-left .footer-contact-info .footer-contact-details a:hover {
  color: #F25220;
}
.footer-left .footer-contact-info .footer-contact-details a svg {
  width: 16px;
  height: 16px;
}
.footer-left .footer-contact-info .footer-social {
  display: flex;
  gap: 10px;
}
.footer-left .footer-contact-info .footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-left .footer-contact-info .footer-social a:hover {
  background: #F25220;
  color: #FFFFFF;
}
.footer-left .footer-contact-info .footer-social a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-right {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-right .footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1280px) {
  .footer-right .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.footer-column h4 {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column li {
  margin-bottom: 12px;
}
.footer-column li:last-child {
  margin-bottom: 0;
}
.footer-column a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s ease;
}
.footer-column a:hover {
  color: #F25220;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: nowrap;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  font-family: inherit;
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    gap: 18px;
  }
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer-bottom__links {
    justify-content: center;
  }
}

.footer-bottom__link {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-bottom__link:hover {
  color: #FFFFFF;
}

.footer-bottom__copyright {
  flex: 1;
  min-width: 0;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: inherit;
  font-family: inherit;
}
@media screen and (max-width: 768px) {
  .footer-bottom__copyright {
    flex: none;
    text-align: center;
  }
}

.footer-bottom--no-credit .footer-bottom__copyright {
  flex: 0 1 auto;
  margin-left: auto;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer-bottom--no-credit .footer-bottom__copyright {
    margin-left: 0;
    text-align: center;
  }
}

.footer-bottom__credit {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer-bottom__credit {
    justify-content: center;
  }
}

.footer-bottom__credit-label {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

.footer-bottom__credit-logo {
  display: inline-flex;
  line-height: 0;
  vertical-align: middle;
}
.footer-bottom__credit-logo svg {
  height: 22px;
  width: auto;
  max-width: 100%;
  display: block;
  color: #FFFFFF;
}
.footer-bottom__credit-logo svg,
.footer-bottom__credit-logo svg path,
.footer-bottom__credit-logo svg rect,
.footer-bottom__credit-logo svg circle,
.footer-bottom__credit-logo svg polygon {
  fill: currentColor;
}
.footer-bottom__credit-logo svg path[fill=none],
.footer-bottom__credit-logo svg rect[fill=none] {
  fill: none;
}
.footer-bottom__credit-logo:hover svg {
  color: #FFFFFF;
  opacity: 0.9;
}

.component-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 14px;
  padding: 6px 15px;
  border-radius: 7px;
  font-family: "Gilroy", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
}
.component-eyebrow--brand, .component-eyebrow.plans-badge, .component-eyebrow.why-choose-badge--brand {
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  color: #FFFFFF;
}
.component-eyebrow--on-dark, .component-eyebrow.why-choose-badge--on-dark {
  background: #FFFFFF;
  color: #F25220;
}
.component-eyebrow--glass, .component-eyebrow--glass-dark {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.page-section-title--center .component-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.page-section-title--right .component-eyebrow {
  margin-left: auto;
}

.why-choose-heading .component-eyebrow {
  margin-bottom: 14px;
}

@media screen and (max-width: 768px) {
  .component-eyebrow {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 10px;
    white-space: normal;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .component-eyebrow--glass,
  .component-eyebrow--glass-dark {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.page-section-title {
  margin-bottom: clamp(24px, 6vw, 48px);
  display: grid;
  gap: 12px;
}
.page-section-title--left {
  text-align: left;
}
.page-section-title--left .page-section-title__sub {
  margin-left: 0;
  margin-right: 0;
}
.page-section-title--right {
  text-align: right;
}
.page-section-title--center {
  text-align: center;
}
.page-section-title--left .page-section-title__sub, .page-section-title--right .page-section-title__sub {
  margin-left: 0;
  margin-right: 0;
}
.page-section-title__heading {
  margin: 0;
}
.page-section-title__sub {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(29, 29, 29, 0.75);
  font-size: 16px;
  line-height: 140%;
}

.dual-process-section__header .page-section-title,
.discover-section-text .page-section-title,
.faq-header .page-section-title,
.testimonials-header .page-section-title,
.trust-values-section__header .page-section-title,
.home-values-alt-section__header-copy .page-section-title,
.home-services-cards-section__intro .page-section-title,
.seasonal-offers-section__header-copy .page-section-title,
.home-pm-section__intro .page-section-title,
.contact-cta-section__intro .page-section-title {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .page-section-title {
    gap: 10px;
  }
  .page-section-title__sub {
    font-size: 14px;
    line-height: 140%;
  }
}
.hero-section {
  max-height: 1200px;
  height: calc(100vh - var(--announcement-bar-height, 0px));
  height: calc(100dvh - var(--announcement-bar-height, 0px));
  max-height: min(1000px, 100vh - var(--announcement-bar-height, 0px));
  max-height: min(1000px, 100dvh - var(--announcement-bar-height, 0px));
  position: relative;
  width: 100%;
  visibility: visible;
  --hero-progress: 0;
  isolation: isolate;
  z-index: 0;
}
.hero-section.whithout-form {
  height: fit-content;
}
.hero-section.whithout-form .hero-section-container {
  padding: 160px 0;
}
.hero-section-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 100px 0;
}
.hero-section-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}
.hero-section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(calc(var(--hero-progress) * 8px));
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  contain: layout style paint;
}
.hero-section-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: none;
}
.hero-section-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .hero-section-bg-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.hero-section-booking {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  filter: blur(calc(var(--hero-progress) * 8px));
  opacity: calc(1 - var(--hero-progress));
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  contain: layout style paint;
  max-width: 800px;
}
.hero-section-booking h1,
.hero-section-booking p,
.hero-section-booking .buttons {
  opacity: 0;
  transform: translateY(28px);
  animation: heroContentRiseIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-section-booking h1 {
  animation-delay: 0.08s;
}
.hero-section-booking p {
  animation-delay: 0.2s;
}
.hero-section-booking .buttons {
  animation-delay: 0.34s;
}
.hero-section-booking p {
  color: #FFFFFF;
  line-height: 140%;
  font-size: 18px;
}
.hero-section-booking h1 {
  font-size: 56px;
  color: #FFFFFF;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-section-booking .buttons {
  width: fit-content;
  display: flex;
  gap: 16px;
}
.hero-section-booking .buttons button {
  flex: 1 0;
}
.hero-section .bg-gradient {
  background: linear-gradient(10deg, #000000 0%, #000000 30%, rgb(0, 0, 0) 80%);
}
@media screen and (max-width: 768px) {
  .hero-section {
    max-height: none;
    height: auto;
  }
  .hero-section-container {
    padding: 140px 0 100px;
  }
  .hero-section-content {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
  .hero-section-bg-image {
    filter: none !important;
  }
  .hero-section-bg-image img {
    animation: none;
    transform: none;
  }
  .hero-section-booking {
    text-align: center;
    align-items: center;
    filter: none !important;
    opacity: 1 !important;
    max-width: 100%;
  }
  .hero-section-booking h1,
  .hero-section-booking p,
  .hero-section-booking .buttons {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-section-booking h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  .hero-section-booking p {
    font-size: 14px;
    line-height: 140%;
  }
  .hero-section-booking p br {
    display: none;
  }
  .hero-section-booking .buttons {
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-section-booking .buttons button,
  .hero-section-booking .buttons a {
    width: fit-content;
  }
}

.hero-section .hero-section-form-container {
  opacity: 1;
  transform: none;
}

@keyframes heroContentRiseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-section-bg-image img,
  .hero-section .hero-section-form-container,
  .hero-section .hero-section-booking h1,
  .hero-section .hero-section-booking p,
  .hero-section .hero-section-booking .buttons {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
.hero-breadcrumbs {
  position: relative;
  z-index: 3;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .hero-breadcrumbs {
    margin-bottom: 20px;
  }
}

.hero-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}
.hero-breadcrumb-item a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero-breadcrumb-item a:hover {
  color: #F25220;
}
.hero-breadcrumb-item span {
  color: rgba(255, 255, 255, 0.9);
}
.hero-breadcrumb-item.active span {
  color: #F25220;
  font-weight: 600;
}
.hero-breadcrumb-item .separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 4px;
  font-weight: 300;
}

.reviews-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .reviews-container {
    padding: 0 16px;
  }
}

.reviews-wrapper {
  display: flex;
  gap: 12px;
  background: #FFFFFF;
  padding: 12px 20px;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  .reviews-wrapper {
    gap: 8px;
    padding: 10px 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s ease !important;
  padding: 4px 12px;
  border-radius: 50px;
}
.review-badge:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.02);
}
@media screen and (max-width: 768px) {
  .review-badge {
    gap: 8px;
    padding: 4px 8px;
  }
}

.review-logo {
  display: flex;
  align-items: center;
  height: 20px;
  flex-shrink: 0;
}
.review-logo svg {
  height: 20px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .review-logo {
    height: 18px;
  }
  .review-logo svg {
    height: 18px;
  }
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .review-rating {
    gap: 4px;
  }
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.review-stars .star-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-stars .star-icon svg {
  width: 14px;
  height: 14px;
  fill: #FFA500;
}
@media screen and (max-width: 768px) {
  .review-stars {
    gap: 1px;
    display: none;
  }
  .review-stars .star-icon svg {
    width: 12px;
    height: 12px;
  }
}

.review-count {
  font-size: 13px;
  font-weight: 600;
  color: #1D1D1D;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .review-count {
    font-size: 11px;
  }
}

.home-hero-section {
  box-sizing: border-box;
  width: 100%;
  max-height: min(1000px, 100vh - var(--announcement-bar-height, 0px));
  max-height: min(1000px, 100dvh - var(--announcement-bar-height, 0px));
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}
.home-hero-section .hero-section-container {
  padding: clamp(96px, 8vw, 96px) 0;
}
.home-hero-section .hero-section-content {
  gap: clamp(40px, 5vw, 72px);
}
.home-hero-section .hero-section-booking {
  gap: 18px;
  max-width: 640px;
}
.home-hero-section .hero-section-booking .component-eyebrow {
  margin-bottom: 4px;
}
.home-hero-section .hero-section-booking h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  text-wrap: balance;
}
.home-hero-section .hero-section-booking p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.45;
  max-width: 52ch;
}
.home-hero-section .hero-section-bg-image picture,
.home-hero-section .hero-section-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-hero-section .home-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .home-hero-section {
    max-height: unset;
  }
}

/**
 * Hero estimate form — prototype-style UI on existing hero glass card; inherits theme typography.
 */
.hero-section .hero-estimate-form-shell {
  max-width: 560px;
  width: 100%;
}
.hero-section .hero-estimate-form-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.hero-section .hero-estimate-form-layout--success .hero-est-success-panels {
  display: block;
}
.hero-section .hero-est-progress {
  width: 100%;
  margin: 0 0 2px;
}
.hero-section .hero-est-progress-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}
.hero-section .hero-est-progress-fill {
  display: block;
  height: 100%;
  width: 10%;
  min-width: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #199CA8 0%, #1bbad1 100%);
  transition: width 0.35s ease;
}
.hero-section .hero-est-progress .progress-text,
.hero-section .hero-est-progress .hero-est-progress-text {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}
.hero-section .hero-est-progress--done .hero-est-progress-fill {
  width: 100% !important;
}
.hero-section .hero-est-progress--done .progress-text,
.hero-section .hero-est-progress--done .hero-est-progress-text {
  text-align: left;
}
.hero-section .hero-estimate-form .hero-est-form-header {
  text-align: left;
}
.hero-section .hero-estimate-form .hero-est-form-title {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  color: #FFFFFF;
}
.hero-section .hero-estimate-form .hero-est-form-subtitle {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
}
.hero-section .hero-estimate-form .form-step.hero-est-step {
  display: none;
}
.hero-section .hero-estimate-form .form-step.hero-est-step.active {
  display: block;
  animation: heroEstFadeIn 0.28s ease;
}
.hero-section .hero-estimate-form .form-step-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-section .hero-estimate-form .form-step-content > .hero-est-step-heading {
  margin: 0;
}
.hero-section .hero-estimate-form .hero-est-step-heading {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.hero-section .hero-estimate-form .hero-est-heading-spaced {
  margin-top: 0;
}
.hero-section .hero-estimate-form .hero-est-req {
  color: #ff6b2c;
  font-weight: 600;
}
.hero-section .hero-estimate-form .hero-est-opt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}
.hero-section .hero-estimate-form .hero-est-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-section .hero-estimate-form .hero-est-options.error {
  outline: 2px solid rgba(239, 68, 68, 0.7);
  outline-offset: 3px;
  border-radius: 16px;
}
.hero-section .hero-estimate-form .hero-est-option {
  cursor: pointer;
  margin: 0;
}
.hero-section .hero-estimate-form .hero-est-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.hero-section .hero-estimate-form .hero-est-option .hero-est-option-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.hero-section .hero-estimate-form .hero-est-option input:checked + .hero-est-option-inner {
  border-color: rgba(45, 212, 212, 0.7);
  background: rgba(45, 212, 212, 0.15);
}
.hero-section .hero-estimate-form .hero-est-option input:focus-visible + .hero-est-option-inner {
  outline: 2px solid rgba(45, 212, 212, 0.6);
  outline-offset: 2px;
}
.hero-section .hero-estimate-form .hero-est-option:hover .hero-est-option-inner {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}
.hero-section .hero-estimate-form .hero-est-option-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.hero-section .hero-estimate-form .hero-est-option-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
}
.hero-section .hero-estimate-form .hero-est-option-desc {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
  line-height: 1.35;
}
.hero-section .hero-estimate-form .hero-est-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-section .hero-estimate-form .hero-est-chip-group.error {
  outline: 2px solid rgba(239, 68, 68, 0.7);
  outline-offset: 3px;
  border-radius: 12px;
}
.hero-section .hero-estimate-form .hero-est-chip {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.hero-section .hero-estimate-form .hero-est-chip:hover {
  border-color: rgba(255, 255, 255, 0.28);
}
.hero-section .hero-estimate-form .hero-est-chip.selected {
  background: rgba(45, 212, 212, 0.15);
  border-color: rgba(45, 212, 212, 0.7);
  color: #2dd4d4;
}
.hero-section .hero-estimate-form .hero-est-chip--urgent.selected {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.5);
  color: #ff9f9f;
}
.hero-section .hero-estimate-form .hero-est-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 0;
}
.hero-section .hero-estimate-form .hero-est-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-section .hero-estimate-form .hero-est-field.error input,
.hero-section .hero-estimate-form .hero-est-field.error textarea,
.hero-section .hero-estimate-form .hero-est-field.error select {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 1px #ef4444;
}
.hero-section .hero-estimate-form .hero-est-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}
.hero-section .hero-estimate-form .hero-est-select,
.hero-section .hero-estimate-form .hero-est-textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(20, 22, 24, 0.35);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 16px;
}
.hero-section .hero-estimate-form .hero-est-select:focus,
.hero-section .hero-estimate-form .hero-est-textarea:focus {
  outline: none;
  border-color: #3b82f6;
}
.hero-section .hero-estimate-form .hero-est-textarea {
  resize: vertical;
  min-height: 88px;
}
.hero-section .hero-estimate-form .hero-est-textarea-attach {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-section .hero-estimate-form .hero-est-textarea-attach:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.35);
}
.hero-section .hero-estimate-form .hero-est-textarea-attach .hero-est-textarea--attach {
  display: block;
  width: 100%;
  min-height: 96px;
  border: 0;
  border-radius: 0;
  resize: vertical;
}
.hero-section .hero-estimate-form .hero-est-textarea-attach .hero-est-textarea--attach:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}
.hero-section .hero-estimate-form .hero-est-attach-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 10px 10px;
  transition: outline-color 0.2s, box-shadow 0.2s;
}
.hero-section .hero-estimate-form .hero-est-attach-strip--error {
  outline: 2px solid rgba(239, 68, 68, 0.75);
  outline-offset: -1px;
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.35);
}
.hero-section .hero-estimate-form .hero-est-attach-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
}
.hero-section .hero-estimate-form .hero-est-attach-leading {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  min-width: 0;
  min-height: 30px;
}
.hero-section .hero-estimate-form .hero-est-attach-empty {
  flex: 0 1 auto;
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.44);
  font-weight: 400;
}
.hero-section .hero-estimate-form .hero-est-attach-empty[hidden] {
  display: none !important;
}
.hero-section .hero-estimate-form .hero-est-attach-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}
.hero-section .hero-estimate-form .hero-est-attach-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 4px 6px 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
}
.hero-section .hero-estimate-form .hero-est-attach-chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}
.hero-section .hero-estimate-form .hero-est-attach-chip-remove {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}
.hero-section .hero-estimate-form .hero-est-attach-chip-remove:hover {
  background: rgba(239, 68, 68, 0.45);
}
.hero-section .hero-estimate-form .hero-est-attach-add {
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
  margin: 0;
}
.hero-section .hero-estimate-form .hero-est-attach-add-inner {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.15s, border-color 0.15s;
}
.hero-section .hero-estimate-form .hero-est-attach-add:hover .hero-est-attach-add-inner {
  border-color: rgba(45, 212, 212, 0.7);
  background: rgba(45, 212, 212, 0.08);
}
.hero-section .hero-estimate-form .hero-est-attach-add-icon {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.85;
}
.hero-section .hero-estimate-form .hero-est-attach-meta {
  flex: 1 1 100%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.35;
}
.hero-section .hero-estimate-form .hero-est-file-input--strict {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.hero-section .hero-estimate-form .hero-est-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-opacity='0.55' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.hero-section .hero-estimate-form .hero-est-upload {
  display: block;
  border: 1.5px dashed rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.hero-section .hero-estimate-form .hero-est-upload:hover {
  border-color: rgba(45, 212, 212, 0.7);
  background: rgba(45, 212, 212, 0.06);
}
.hero-section .hero-estimate-form .hero-est-upload-icon {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}
.hero-section .hero-estimate-form .hero-est-upload-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}
.hero-section .hero-estimate-form .hero-est-upload-hint {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}
.hero-section .hero-estimate-form .hero-est-file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.hero-section .hero-estimate-form .field_container label,
.hero-section .hero-estimate-form .hero-est-field .field_container label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}
.hero-section .hero-estimate-form .field_container input[type=text],
.hero-section .hero-estimate-form .field_container input[type=email],
.hero-section .hero-estimate-form .field_container input[type=tel] {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(20, 22, 24, 0.35);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 16px;
}
.hero-section .hero-estimate-form .field_container input[type=text]::placeholder,
.hero-section .hero-estimate-form .field_container input[type=email]::placeholder,
.hero-section .hero-estimate-form .field_container input[type=tel]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.hero-section .hero-estimate-form .field_container input[type=text]:focus,
.hero-section .hero-estimate-form .field_container input[type=email]:focus,
.hero-section .hero-estimate-form .field_container input[type=tel]:focus {
  outline: none;
  border-color: #3b82f6;
}
.hero-section .hero-estimate-form .field_container.error input {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 1px #ef4444;
}
.hero-section .hero-estimate-form .form-field-checkbox.hero-est-terms {
  margin-top: 0;
}
.hero-section .hero-estimate-form .form-field-checkbox.hero-est-terms .checkbox span {
  font-size: 16px;
  line-height: 1.45;
}
.hero-section .hero-estimate-form .cltr-turnstile-wrap {
  margin-top: 0;
}
.hero-section .hero-estimate-form .hero-est-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 0;
  width: 100%;
}
.hero-section .hero-estimate-form .hero-est-actions .btn-next,
.hero-section .hero-estimate-form .hero-est-actions .hero-est-btn-primary {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 15px;
  background: #ff6b2c;
  border: none;
  color: #FFFFFF;
}
.hero-section .hero-estimate-form .hero-est-actions .btn-next:hover:not(:disabled),
.hero-section .hero-estimate-form .hero-est-actions .hero-est-btn-primary:hover:not(:disabled) {
  background: #ff7d45;
}
.hero-section .hero-estimate-form .hero-est-actions .btn-prev {
  flex: 0 0 auto;
  align-self: stretch;
  min-width: min(120px, 38%);
  width: auto;
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.hero-section .hero-estimate-form .hero-est-actions .btn-prev:hover {
  background: rgba(255, 255, 255, 0.06);
}
.hero-section .hero-estimate-form .hero-est-actions .btn-prev.btn-hidden {
  display: none;
}
.hero-section .hero-estimate-form .hero-est-actions .btn-prev.btn-hidden ~ .btn-next,
.hero-section .hero-estimate-form .hero-est-actions .btn-prev.btn-hidden ~ .hero-est-btn-primary {
  flex: 1 1 100%;
}
.hero-section .hero-est-success-panels {
  display: none;
  width: 100%;
  color: #FFFFFF;
  padding: 0 0 8px;
}
.hero-section .hero-estimate-form-layout--success .hero-est-success-panels {
  display: block;
}
.hero-section .hero-est-success {
  animation: heroEstFadeIn 0.3s ease;
}
.hero-section .hero-est-confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 4px auto 16px;
}
.hero-section .hero-est-confirm-icon--ok {
  background: rgba(45, 212, 212, 0.15);
  color: #2dd4d4;
}
.hero-section .hero-est-confirm-icon--urgent {
  background: rgba(239, 68, 68, 0.15);
}
.hero-section .hero-est-confirm-title {
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.hero-section .hero-est-confirm-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 18px;
}
.hero-section .hero-est-accent {
  color: #2dd4d4;
}
.hero-section .hero-est-accent--urgent {
  color: #ff9f9f;
}
.hero-section .hero-est-timeline {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.hero-section .hero-est-timeline-item {
  display: flex;
  gap: 14px;
  padding: 10px 0;
}
.hero-section .hero-est-timeline-num {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(45, 212, 212, 0.15);
  color: #2dd4d4;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .hero-est-timeline-h {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #FFFFFF;
  line-height: 1.3;
}
.hero-section .hero-est-timeline-p {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}
.hero-section .hero-est-call-now {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: #ef4444;
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 14px;
}
.hero-section .hero-est-call-now:hover {
  filter: brightness(1.05);
  color: #FFFFFF;
}
.hero-section .hero-est-success-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}
.hero-section .hero-est-success-actions .btn-prev-link {
  flex: 0 0 auto;
  align-self: stretch;
  min-width: min(130px, 40%);
  margin: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 16px;
  text-align: center;
  transition: background 0.15s, border-color 0.15s;
}
.hero-section .hero-est-success-actions .btn-prev-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
}
.hero-section .hero-est-success-actions .btn-prev-link:only-child {
  flex: 1 1 100%;
  min-width: 0;
}
.hero-section .hero-est-success-actions .hero-est-success-home {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.hero-section .hero-section-form-container {
  min-width: 500px;
  margin-right: 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .hero-section-form {
  max-width: 560px;
  width: 100%;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.168);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 8px;
  color: #FFFFFF;
  filter: blur(calc(var(--hero-progress) * 8px));
  opacity: calc(1 - var(--hero-progress));
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  contain: layout style paint;
}
.hero-section .hero-section-form .hero-section-form-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-section .hero-section-form .form-field.error input[type=text],
.hero-section .hero-section-form .form-field.error input[type=email],
.hero-section .hero-section-form .form-field.error input[type=tel] {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px #ef4444;
}
.hero-section .hero-section-form .form-field-checkbox.error .checkbox span::before {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px #ef4444;
}
.hero-section .hero-section-form .checkbox-terms-link {
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .hero-section .hero-estimate-form .hero-est-row-2 {
    grid-template-columns: 1fr;
  }
  .hero-section .hero-section-form-container {
    width: 100%;
    min-width: 100%;
  }
  .hero-section .hero-section-form {
    max-width: 100%;
    padding: 20px;
    filter: none !important;
    opacity: 1 !important;
  }
}

@keyframes heroEstFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-intro {
  padding: 56px 0;
}
@media screen and (max-width: 768px) {
  .service-intro {
    padding: 40px 0;
  }
}

.service-intro__top {
  text-align: left;
}

.service-intro__badge {
  position: relative;
  bottom: 10px;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff6a00;
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 20px;
}

.service-intro__badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
}

.service-intro__title {
  margin-bottom: 80px;
  font-size: clamp(28px, 5vw, 38.6px);
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .service-intro__title {
    margin-bottom: 40px;
  }
}

.service-intro__subtitle {
  color: #6b6b6b;
}

.service-intro__grid {
  display: flex;
  gap: 24px;
  height: 414px;
}
@media screen and (max-width: 768px) {
  .service-intro__grid {
    flex-direction: column;
    height: auto;
  }
}

.service-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-intro__image--left {
  max-width: 342px;
  width: 100%;
  border-radius: 18px;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-intro__image--left {
    max-width: 100%;
    height: auto;
  }
}
.service-intro__image--right {
  max-width: 533px;
  width: 100%;
  border-radius: 18px;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-intro__image--right {
    max-width: 100%;
    height: auto;
  }
}

.service-intro__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.service-intro__content #service-learn-more {
  align-self: flex-start;
  width: 50%;
  text-align: center;
}

.service-intro__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .service-intro__text {
    gap: 24px;
  }
}

.service-intro__cta {
  margin-top: 8px;
}

@media (max-width: 992px) {
  .service-intro__grid {
    grid-template-columns: 1fr;
  }
}
.avatar-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #d8d8d8;
  box-sizing: border-box;
}

.avatar-placeholder__label {
  font-weight: 700;
  color: #1D1D1D;
  line-height: 1;
  letter-spacing: -0.02em;
}

.avatar-placeholder--sm .avatar-placeholder__label {
  font-size: 10px;
}

.avatar-placeholder--md .avatar-placeholder__label {
  font-size: 14px;
}

.location-testimonials {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .location-testimonials {
    padding: 60px 0;
  }
}

.location-testimonials__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
}
.location-testimonials__header .location-testimonials__title {
  margin: 0;
}
.location-testimonials__header .location-testimonials__desc {
  font-size: 18px;
  line-height: 140%;
  color: #757575;
}
@media screen and (max-width: 768px) {
  .location-testimonials__header .location-testimonials__desc {
    font-size: 14px;
    line-height: 140%;
  }
}

.location-testimonials__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .location-testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .location-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.testimonial-card--image {
  position: relative;
}
.testimonial-card--image .testimonial-card__media {
  position: relative;
  height: 100%;
  min-height: 420px;
}
.testimonial-card--image .testimonial-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.testimonial-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-card--image .testimonial-card__top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}
.testimonial-card--image .testimonial-card__bottom {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 5;
}
.testimonial-card--image .testimonial-card__sound-toggle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  backdrop-filter: blur(4px);
}
.testimonial-card--image .testimonial-card__sound-toggle:hover {
  background: rgba(0, 0, 0, 0.75);
}
.testimonial-card--image .testimonial-card__sound-toggle .sound-icon {
  opacity: 0.9;
}

.testimonial-card__stars {
  display: inline-flex;
  gap: 6px;
  color: #F59E0B;
  font-size: 18px;
}

.testimonial-card__rating {
  color: #FFFFFF;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.testimonial-card__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card__name {
  color: #FFFFFF;
  font-weight: 600;
}

.testimonial-card__role {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.testimonial-card--text {
  padding: 28px;
}
.testimonial-card--text .testimonial-card__quote {
  font-size: 18px;
  line-height: 1.6;
  color: #1D1D1D;
  margin: 12px 0 24px;
}
.testimonial-card--text .testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card--text .testimonial-card__avatar-slot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card--text .testimonial-card__avatar {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.testimonial-card--text .testimonial-card__name {
  color: #1D1D1D;
  font-weight: 600;
}
.testimonial-card--text .testimonial-card__role {
  color: #757575;
  font-size: 14px;
}

@keyframes testimonials-marquee-glow-drift {
  0% {
    transform: translate(-10%, -8%) scale(1);
  }
  50% {
    transform: translate(16%, 10%) scale(1.1);
  }
  100% {
    transform: translate(-8%, 14%) scale(1.02);
  }
}
.testimonials-marquee-section {
  background: #0c0c0e;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  padding-bottom: 120px;
  margin-top: 80px;
}
.testimonials-marquee-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.45;
  mask-image: radial-gradient(85% 85% at 50% 42%, #000, transparent 88%);
  pointer-events: none;
}
.testimonials-marquee-section::after {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  background: radial-gradient(44% 56% at 50% 50%, rgba(242, 82, 32, 0.44), transparent 62%);
  animation: testimonials-marquee-glow-drift 24s ease-in-out infinite alternate;
  pointer-events: none;
}
.testimonials-marquee-section .container {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  padding: 0;
}
.testimonials-marquee-section .testimonials-header {
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-marquee-section .testimonials-header .page-section-title--center .component-eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.testimonials-marquee-section .testimonials-header .page-section-title__heading {
  margin-bottom: 16px;
  color: #FFFFFF;
}
.testimonials-marquee-section .testimonials-header .page-section-title__sub {
  color: rgba(255, 255, 255, 0.72);
}
.testimonials-marquee-section .testimonials-marquee {
  margin-top: 48px;
  position: relative;
}
.testimonials-marquee-section .testimonials-marquee-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  padding: 40px 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials-marquee-section .testimonials-marquee-viewport::-webkit-scrollbar {
  display: none;
}
.testimonials-marquee-section .testimonials-marquee-viewport:active {
  cursor: grabbing;
}
.testimonials-marquee-section .testimonials-marquee-viewport:focus-visible {
  outline: 2px solid rgba(242, 82, 32, 0.55);
  outline-offset: 4px;
}
@media screen and (max-width: 768px) {
  .testimonials-marquee-section .testimonials-marquee-viewport {
    padding: 24px 0;
  }
}
.testimonials-marquee-section .testimonials-marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  min-height: 0;
}
.testimonials-marquee-section .testimonials-marquee-segment {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  flex-shrink: 0;
}
.testimonials-marquee-section .testimonials-marquee-item {
  flex-shrink: 0;
}
.testimonials-marquee-section .testimonials-marquee-progress {
  width: clamp(220px, 46vw, 680px);
  max-width: 100%;
  margin: 18px auto 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
  position: relative;
  border-radius: 9999px;
  overflow: hidden;
}
.testimonials-marquee-section .testimonials-marquee-progress-bar {
  height: 7px;
  border-radius: 999px;
  width: 100%;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
}
.testimonials-marquee-section .testimonials-marquee-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
html[dir=rtl] .testimonials-marquee-section .testimonials-marquee-progress-fill {
  left: auto;
  right: 0;
  transform-origin: right center;
}

.testimonials-marquee-section .testimonial-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(29, 29, 29, 0.08);
  background: #FFFFFF;
  padding: 22px 22px 20px;
  min-width: 400px;
  max-width: 400px;
  min-height: 300px;
  flex-shrink: 0;
  transition: transform 0.45s ease, border-color 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
  outline: none;
  display: block;
  color: #1D1D1D;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 18px 40px -24px rgba(0, 0, 0, 0.45);
}
.testimonials-marquee-section .testimonial-card:hover, .testimonials-marquee-section .testimonial-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(242, 82, 32, 0.45);
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 24px 48px -20px rgba(0, 0, 0, 0.5);
}
.testimonials-marquee-section .testimonial-card:hover .testimonial-view--teaser, .testimonials-marquee-section .testimonial-card:focus-visible .testimonial-view--teaser {
  transform: translateY(-8px) scale(0.985);
  pointer-events: none;
}
.testimonials-marquee-section .testimonial-card:hover .testimonial-view--full, .testimonials-marquee-section .testimonial-card:focus-visible .testimonial-view--full {
  transform: translateY(0);
  clip-path: inset(0 0 0 0 round 16px);
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .testimonials-marquee-section .testimonial-card {
    min-width: 320px;
    max-width: 320px;
    min-height: 205px;
    padding: 18px;
  }
}
@media (max-width: 480px) {
  .testimonials-marquee-section .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    min-height: 300px;
    padding: 16px;
  }
}
.testimonials-marquee-section .testimonial-corner-bg {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 96px;
  height: 88px;
  color: #FFFFFF;
  pointer-events: none;
  z-index: 3;
  transform: translate(40px, -40px);
  transition: transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonials-marquee-section .testimonial-corner-bg svg,
.testimonials-marquee-section .testimonial-corner-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.testimonials-marquee-section .testimonial-review-badge {
  position: absolute;
  top: 12px;
  right: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 5;
}
.testimonials-marquee-section .testimonial-review-badge img,
.testimonials-marquee-section .testimonial-review-badge svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}
.testimonials-marquee-section .testimonial-view {
  position: relative;
  min-height: 184px;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonials-marquee-section .testimonial-view--teaser {
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: translateY(0);
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  text-align: left;
}
.testimonials-marquee-section .testimonial-view--teaser .testimonial-teaser-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 0;
}
.testimonials-marquee-section .testimonial-view--teaser .testimonial-slogan {
  margin: 0;
}
.testimonials-marquee-section .testimonial-view--teaser .testimonial-full-footer {
  margin-top: 12px;
  align-self: stretch;
}
.testimonials-marquee-section .testimonial-view--teaser .testimonial-name {
  color: #1D1D1D;
}
.testimonials-marquee-section .testimonial-view--teaser .testimonial-role-chip {
  margin-top: 0;
}
.testimonials-marquee-section .testimonial-view--full {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  padding: 50px 20px 20px;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  clip-path: inset(100% 0 0 0 round 16px);
  pointer-events: none;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonials-marquee-section .testimonial-quote-mark {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  color: #F25220;
  opacity: 0.95;
  align-self: flex-start;
}
.testimonials-marquee-section .testimonial-slogan {
  margin: 8px 0 auto;
  width: 100%;
  text-align: left;
  color: #1D1D1D;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .testimonials-marquee-section .testimonial-slogan {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media (max-width: 480px) {
  .testimonials-marquee-section .testimonial-slogan {
    font-size: 18px;
    line-height: 1.2;
  }
}
.testimonials-marquee-section .testimonial-role-chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  max-width: 100%;
  margin-top: 14px;
  border-radius: 999px;
  background: #f4f4f5;
  border: 1px solid rgba(29, 29, 29, 0.08);
  color: rgba(29, 29, 29, 0.72);
  padding: 5px 11px;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonials-marquee-section .testimonial-role-chip--dark {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  margin-top: 0;
}
.testimonials-marquee-section .testimonial-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.42) transparent;
}
.testimonials-marquee-section .testimonial-text::-webkit-scrollbar {
  width: 6px;
}
.testimonials-marquee-section .testimonial-text::-webkit-scrollbar-track {
  background: transparent;
}
.testimonials-marquee-section .testimonial-text::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}
.testimonials-marquee-section .testimonial-full-footer {
  margin-top: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.testimonials-marquee-section .testimonial-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(29, 29, 29, 0.1);
}
.testimonials-marquee-section .testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-marquee-section .testimonial-info {
  min-width: 0;
}
.testimonials-marquee-section .testimonial-name {
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonials-marquee-section .testimonial-view--full .testimonial-name {
  color: #fff;
}
.testimonials-marquee-section .testimonial-stars {
  margin-top: 4px;
  display: flex;
  gap: 2px;
  color: #F25220;
  font-size: 10px;
  line-height: 1;
}
.testimonials-marquee-section .testimonial-view--full .testimonial-stars {
  color: rgba(255, 255, 255, 0.95);
}
@media screen and (max-width: 768px) {
  .testimonials-marquee-section {
    padding: 60px 0;
    margin-top: 0;
  }
  .testimonials-marquee-section .testimonials-header {
    margin-bottom: 32px;
  }
  .testimonials-marquee-section .testimonial-view {
    min-height: 168px;
  }
  .testimonials-marquee-section .testimonial-corner-bg {
    width: 82px;
    height: 74px;
    transform: translate(14px, -14px);
  }
  .testimonials-marquee-section .testimonials-marquee-progress {
    width: 90%;
    margin-top: 10px;
  }
}
.testimonials-marquee-section .testimonial-card:hover .testimonial-corner-bg,
.testimonials-marquee-section .testimonial-card:focus-visible .testimonial-corner-bg {
  transform: translate(0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee-section::after {
    animation: none;
    inset: 0;
    transform: none;
  }
}

.partners-marquee {
  padding: 80px 0;
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .partners-marquee {
    padding: 60px 0;
  }
}

.partners-marquee__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
}
.partners-marquee__header .partners-marquee__title {
  margin: 0;
}
.partners-marquee__header .partners-marquee__desc {
  font-size: 16px;
  line-height: 140%;
  color: #1D1D1D;
}
@media screen and (max-width: 768px) {
  .partners-marquee__header .partners-marquee__desc {
    font-size: 14px;
    line-height: 140%;
  }
}

.partners-marquee__marquee {
  overflow: hidden;
  position: relative;
}
.partners-marquee__marquee::before, .partners-marquee__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  pointer-events: none;
  z-index: 2;
}
.partners-marquee__marquee::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
}
.partners-marquee__marquee::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
}
@media screen and (max-width: 768px) {
  .partners-marquee__marquee::before, .partners-marquee__marquee::after {
    width: 80px;
  }
}

.partners-marquee__track {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: marquee-scroll 30s linear infinite;
}
@media screen and (max-width: 768px) {
  .partners-marquee__track {
    animation-duration: 24s;
  }
}

.partners-marquee__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  margin-right: 64px;
}
@media screen and (max-width: 768px) {
  .partners-marquee__item {
    margin-right: 36px;
  }
}
.partners-marquee__item img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.03));
}
@media screen and (max-width: 768px) {
  .partners-marquee__item img {
    height: 40px;
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/**
 * Shared text marquee (scrolling strip). Use class .text-marquee.
 */
.text-marquee {
  --marquee-height: clamp(64px, 7vw, 88px);
  --marquee-rotate: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.text-marquee__container {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-block: clamp(12px, 2vw, 20px);
  overflow: hidden;
}
.text-marquee__wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.text-marquee__strip {
  position: relative;
  height: var(--marquee-height);
  display: flex;
  align-items: center;
  transform: rotate(var(--marquee-rotate));
  transform-origin: center left;
  background: linear-gradient(90deg, #DE643B 0%, #D6EFE8 100%);
  padding: 0 clamp(20px, 3vw, 40px);
  box-shadow: 0 6px 30px -10px rgba(0, 0, 0, 0.15);
}
.text-marquee__track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: text-marquee-scroll 70s linear infinite;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.text-marquee__seq {
  padding-right: 10px;
}
@keyframes text-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .text-marquee .text-marquee__track {
    animation: none;
  }
}

.plans-section {
  margin-top: 60px;
  padding: 40px 0 80px 0;
  background: transparent;
}
.plans-section .plans-header {
  text-align: center;
  margin: 0 auto 28px;
}
.plans-section .plans-header .plans-badge {
  margin-bottom: 14px;
}
.plans-section .plans-header h2 {
  font-size: 39.5px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px;
  line-height: 63px;
}
.plans-section .plans-header .plans-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.plans-section .plans-header .plans-toggle.is-yearly .toggle-switch .knob {
  transform: translateY(-50%) translateX(20px);
}
.plans-section .plans-header .plans-toggle.is-monthly .toggle-switch .knob {
  transform: translateY(-50%) translateX(0);
}
.plans-section .plans-header .plans-toggle .toggle-label {
  color: #757575;
  font-weight: 600;
}
.plans-section .plans-header .plans-toggle .toggle-label.is-active {
  color: #1D1D1D;
}
.plans-section .plans-header .plans-toggle .toggle-switch {
  position: relative;
  width: 40px;
  height: 20px;
  background: #000000;
  border-radius: 999px;
  cursor: pointer;
}
.plans-section .plans-header .plans-toggle .toggle-switch .knob {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border-radius: 999px;
  transition: transform 0.25s ease;
}
.plans-section .plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .plans-section .plans-grid {
    grid-template-columns: 1fr;
    border: none;
    border-radius: 0;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .plans-section {
    padding-bottom: 40px;
  }
  .plans-section .plans-header h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.plans-section .plan-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  padding: 20px 30px;
}
.plans-section .plan-card--accent {
  outline: 3px solid #199CA8;
}
.plans-section .plan-card--featured {
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  color: #FFFFFF;
  border: none;
}
.plans-section .plan-card--featured .plan-head {
  background: transparent;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
}
.plans-section .plan-card--featured .plan-badge {
  position: relative;
  color: #1D1D1D;
  border-radius: 7px;
  padding: 6px 15px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 20px;
}
.plans-section .plan-card--featured .plan-body h3 {
  color: #FFFFFF;
}
.plans-section .plan-card--featured .plan-body .plan-desc {
  color: rgba(255, 255, 255, 0.9);
}
.plans-section .plan-card--featured .plan-body .plan-includes {
  color: #FFFFFF;
  opacity: 0.9;
}
.plans-section .plan-card--featured .plan-body .plan-features li {
  color: #FFFFFF;
}
.plans-section .plan-card--featured .plan-body .plan-features .check {
  color: #FFFFFF;
}
.plans-section .plan-card .plan-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.plans-section .plan-card .plan-head .plan-badge {
  background: #FFFFFF;
  position: relative;
  color: #000000;
  border-radius: 7px;
  padding: 6px 15px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 20px;
}
.plans-section .plan-card .plan-head .plan-rate-badge {
  position: relative;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  color: #FFFFFF;
  border-radius: 7px;
  padding: 6px 15px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 20px;
}
.plans-section .plan-card .plan-head .plan-icon {
  width: 24px;
  height: 24px;
}
.plans-section .plan-card .plan-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.plans-section .plan-card .plan-body .plan-name {
  font-weight: 500;
  font-size: 21.9px;
  letter-spacing: -0.5px;
}
.plans-section .plan-card .plan-body h3 {
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 38.6px;
  font-weight: 600;
  margin-bottom: 40px;
  padding: 12px 0;
}
.plans-section .plan-card .plan-body .per {
  font-size: 14.4px;
  font-weight: 600;
  opacity: 0.7;
}
.plans-section .plan-card .plan-body .plan-desc {
  opacity: 0.8;
  margin: 12px 0 8px;
  font-size: 14.4px;
  line-height: 26px;
}
.plans-section .plan-card .plan-body .plan-includes {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 20px;
}
.plans-section .plan-card .plan-body .plan-features--wrapper {
  flex-grow: 1;
}
.plans-section .plan-card .plan-body .plan-features {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 0;
}
.plans-section .plan-card .plan-body .plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.4px;
  line-height: 26px;
}
.plans-section .plan-card .plan-body .plan-features li .check {
  display: inline-flex;
  flex-shrink: 0;
}
.plans-section .plan-card .plan-body .plan-cta {
  justify-self: flex-end;
  display: flex;
  justify-content: center;
}
.plans-section .plan-card .plan-body .plan-cta .btn {
  width: 100%;
  border: 1px solid #F25220;
  background: #FFFFFF;
  color: #1D1D1D;
}
.plans-section .plan-card .plan-body .plan-cta .btn:hover {
  background: #F25220;
  color: #FFFFFF;
}
.plans-section .plan-card .plan-body .plan-cta.primary .btn:hover {
  background: #FFFFFF;
  color: #1D1D1D;
}
.plans-section .plan-card--simple .plan-head .plan-name {
  text-transform: none;
}
.plans-section .plan-card--simple .plan-body h3 {
  color: #1D1D1D;
}
.plans-section .plan-card--simple .plan-cta .btn {
  background: #FFFFFF;
  color: #1D1D1D;
}
.plans-section .plan-card--simple .plan-body .plan-name {
  color: #1D1D1D;
}
.plans-section .plan-card--simple .plan-badge {
  background: #FFFFFF;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .plans-section .plan-card--simple {
    border: 1px solid #f1f1f1;
  }
}
.plans-section--featured .plan-cta .btn {
  background: #FFFFFF;
  color: #FFFFFF;
}
.plans-section--featured .plan-body {
  color: #FFFFFF;
}
.plans-section--featured .plan-body .plan-name {
  color: #FFFFFF;
}
.plans-section--featured .plan-badge {
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  color: #FFFFFF;
}

.why-choose-section {
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  border-radius: 40px;
  padding: 80px 60px;
}
@media screen and (max-width: 768px) {
  .why-choose-section {
    padding: 40px 24px;
  }
}
.why-choose-section .why-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .why-choose-section .why-choose-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.why-choose-section .why-choose-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 120px;
}
.why-choose-section .why-choose-left .feature-card-extra {
  height: 100%;
  padding-top: 120px;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .why-choose-section .why-choose-left {
    gap: 24px;
  }
  .why-choose-section .why-choose-left .feature-card-extra {
    padding-top: 140px;
  }
}
.why-choose-section .why-choose-heading h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
}
.why-choose-section .why-choose-heading h2 strong {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .why-choose-section .why-choose-heading h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.why-choose-section .why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1.5fr;
  gap: 24px;
  min-height: 500px;
}
.why-choose-section .why-choose-grid .feature-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1/3;
}
.why-choose-section .why-choose-grid .feature-card:nth-child(1) .feature-image {
  top: -50px;
}
.why-choose-section .why-choose-grid .feature-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1/2;
}
.why-choose-section .why-choose-grid .feature-card:nth-child(2) .feature-image {
  top: -50px;
  left: unset;
  right: 0;
  justify-content: flex-end;
}
.why-choose-section .why-choose-grid .feature-card:nth-child(2) .feature-image img {
  height: 200px;
  width: fit-content;
}
.why-choose-section .why-choose-grid .feature-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2/3;
}
.why-choose-section .why-choose-grid .feature-card:nth-child(3) .feature-image {
  top: -60px;
}
.why-choose-section .why-choose-grid .feature-card:nth-child(3) .feature-image img {
  max-width: clamp(200px, 22vw, 300px);
}
@media screen and (max-width: 768px) {
  .why-choose-section .why-choose-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .why-choose-section .why-choose-grid .feature-card:nth-child(1),
  .why-choose-section .why-choose-grid .feature-card:nth-child(2),
  .why-choose-section .why-choose-grid .feature-card:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }
  .why-choose-section .why-choose-grid .feature-card:nth-child(1) .feature-image,
  .why-choose-section .why-choose-grid .feature-card:nth-child(2) .feature-image,
  .why-choose-section .why-choose-grid .feature-card:nth-child(3) .feature-image {
    top: -50px;
    width: 100%;
    height: 180px;
    justify-content: center;
  }
  .why-choose-section .why-choose-grid .feature-card:nth-child(1) .feature-image img,
  .why-choose-section .why-choose-grid .feature-card:nth-child(2) .feature-image img,
  .why-choose-section .why-choose-grid .feature-card:nth-child(3) .feature-image img {
    height: 100%;
  }
  .why-choose-section .why-choose-grid .feature-card:nth-child(2) .feature-image {
    height: 170px;
  }
  .why-choose-section .why-choose-grid .feature-card:nth-child(3) .feature-image {
    height: 220px;
  }
}
.why-choose-section.why-choose-section--white {
  background: transparent;
  border: none;
}
.why-choose-section.why-choose-section--white .why-choose-heading h2 {
  color: #1D1D1D;
}
.why-choose-section.why-choose-section--white .why-choose-heading h2 strong {
  color: #F25220;
}
.why-choose-section.why-choose-section--white .feature-card {
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
}
.why-choose-section.why-choose-section--white .feature-card .feature-content h3,
.why-choose-section.why-choose-section--white .feature-card .feature-content p {
  color: #FFFFFF;
}
.why-choose-section.why-choose-section--white .feature-card .feature-image-contained svg {
  color: #FFFFFF;
  opacity: 0.25;
}

.location-why-choose-section {
  padding: 80px 0;
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .location-why-choose-section {
    padding: 60px 0;
  }
}

.location-why-choose-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .location-why-choose-wrapper {
    gap: 32px;
  }
}

.location-why-choose-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.location-why-choose-header h2 {
  font-size: 56px;
  font-weight: 600;
  color: #1D1D1D;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .location-why-choose-header h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}

.location-why-choose-content {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .location-why-choose-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.location-why-choose-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .location-why-choose-card {
    min-height: 400px;
  }
}

.location-why-choose-card-left {
  display: flex;
  padding: 40px;
  background: #f1f1f1;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  .location-why-choose-card-left {
    grid-template-columns: 1fr;
  }
}
.location-why-choose-card-left .location-why-choose-card-image {
  flex: 1 0 0;
  border-radius: 24px 0 0 24px;
}
.location-why-choose-card-left .location-why-choose-card-image img {
  width: 225px;
  object-fit: cover;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .location-why-choose-card-left .location-why-choose-card-image {
    border-radius: 24px 24px 0 0;
    min-height: 220px;
  }
}
.location-why-choose-card-left .location-why-choose-card-image .btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}
.location-why-choose-card-left .location-why-choose-card-content {
  flex: 1 0 0;
  position: relative;
  z-index: 2;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .location-why-choose-card-left .location-why-choose-card-content {
    padding: 24px;
  }
}
.location-why-choose-card-left .location-why-choose-card-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}
@media screen and (max-width: 768px) {
  .location-why-choose-card-left .location-why-choose-card-content::before {
    display: none;
  }
}
.location-why-choose-card-left .location-why-choose-stat {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .location-why-choose-card-left .location-why-choose-stat {
    margin-bottom: 16px;
  }
}
.location-why-choose-card-left .location-why-choose-stat .stat-number {
  font-size: 80px;
  font-weight: 700;
  color: #1D1D1D;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .location-why-choose-card-left .location-why-choose-stat .stat-number {
    font-size: 56px;
    line-height: 1.2;
  }
}
.location-why-choose-card-left h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1D1D1D;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .location-why-choose-card-left h3 {
    font-size: 24px;
  }
}
.location-why-choose-card-left p {
  font-size: 16px;
  line-height: 1.5;
  color: #6B7280;
  margin: 0 0 28px 0;
  max-width: 520px;
}
@media screen and (max-width: 768px) {
  .location-why-choose-card-left p {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.location-why-choose-card-left .btn {
  width: fit-content;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
}

.location-why-choose-card-right {
  position: relative;
  border-radius: 32px;
}
@media screen and (max-width: 768px) {
  .location-why-choose-card-right {
    border-radius: 24px;
  }
}
.location-why-choose-card-right .location-why-choose-card-image {
  width: 100%;
  height: 100%;
}
.location-why-choose-card-right .location-why-choose-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-why-choose-card-right .location-why-choose-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 2;
}
.location-why-choose-card-right .location-why-choose-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 48px;
}
@media screen and (max-width: 768px) {
  .location-why-choose-card-right .location-why-choose-card-overlay {
    padding: 32px 24px;
  }
}
.location-why-choose-card-right .location-why-choose-stat {
  margin-bottom: 12px;
}
.location-why-choose-card-right .location-why-choose-stat .stat-number {
  font-size: 80px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  .location-why-choose-card-right .location-why-choose-stat .stat-number {
    font-size: 72px;
    line-height: 1.2;
  }
}
.location-why-choose-card-right h3 {
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .location-why-choose-card-right h3 {
    font-size: 22px;
  }
}

.faq-section .faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 1024px) {
  .faq-section .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.faq-section .faq-left {
  position: sticky;
  top: 120px;
}
@media (max-width: 1024px) {
  .faq-section .faq-left {
    position: relative;
    top: auto;
  }
}
.faq-section .faq-header .page-section-title__heading {
  margin-bottom: 20px;
}
.faq-section .faq-header .page-section-title__sub {
  margin-bottom: 32px;
  max-width: 400px;
}
.faq-section .faq-header .faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #1D1D1D;
  color: #FFFFFF;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.faq-section .faq-header .faq-cta svg {
  transition: transform 0.3s ease;
}
.faq-section .faq-header .faq-cta:hover {
  background: rgb(16.25, 16.25, 16.25);
  transform: translateX(4px);
}
.faq-section .faq-header .faq-cta:hover svg {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .faq-section .faq-right {
    max-width: 100%;
  }
}
.faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
  border-radius: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(29, 29, 29, 0.08);
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 24px 56px rgba(29, 29, 29, 0.07);
  overflow: hidden;
}
.faq-section .faq-item {
  position: relative;
  background: transparent;
  transition: background-color 0.25s ease;
}
.faq-section .faq-item + .faq-section .faq-item {
  border-top: 1px solid rgba(29, 29, 29, 0.08);
}
.faq-section .faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-section .faq-item.is-open {
  background: rgba(29, 29, 29, 0.02);
}
.faq-section .faq-item.is-open::before {
  opacity: 1;
  transform: scaleY(1);
}
.faq-section .faq-item.is-open .faq-question {
  color: #F25220;
}
.faq-section .faq-item.is-open .faq-icon {
  border-color: rgba(242, 82, 32, 0.35);
}
.faq-section .faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.6);
}
.faq-section .faq-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(18px, 2.2vw, 22px) clamp(18px, 2.4vw, 26px);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media (hover: hover) {
  .faq-section .faq-toggle:hover {
    background: rgba(29, 29, 29, 0.025);
  }
}
.faq-section .faq-toggle:focus-visible {
  outline: 2px solid rgba(242, 82, 32, 0.55);
  outline-offset: -2px;
}
.faq-section .faq-question {
  font-size: clamp(16px, 1.45vw, 18px);
  font-weight: 600;
  color: #1D1D1D;
  line-height: 1.4;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}
.faq-section .faq-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(29, 29, 29, 0.04);
  border: 1px solid rgba(29, 29, 29, 0.1);
  position: relative;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.faq-section .faq-icon::before, .faq-section .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background: #1D1D1D;
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}
.faq-section .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-section .faq-accordion[data-accordion-animated] .faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-section .faq-accordion[data-accordion-animated] .faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}
.faq-section .faq-accordion[data-accordion-animated] .faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-section .faq-panel {
  color: rgba(29, 29, 29, 0.72);
}
.faq-section .faq-panel p {
  margin: 0;
  padding: 0 clamp(18px, 2.4vw, 26px) clamp(18px, 2.2vw, 22px);
  font-size: clamp(14px, 1.25vw, 15px);
  line-height: 1.65;
  max-width: 62ch;
}
.faq-section .faq-accordion:not([data-accordion-animated]) .faq-panel[hidden] {
  display: none;
}

.workflow-section {
  background: #ffffff;
}

.workflow-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  gap: 24px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .workflow-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.workflow-left {
  position: relative;
}
.workflow-left .workflow-sticky {
  position: sticky;
  top: 30vh;
  max-width: 600px;
}
@media screen and (max-width: 1280px) {
  .workflow-left .workflow-sticky {
    position: relative;
    top: 0;
    max-width: 100%;
  }
}

.workflow-title {
  margin-bottom: 20px;
}

.workflow-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(29, 29, 29, 0.7);
  margin-bottom: 30px;
}

.workflow-cta {
  display: inline-block;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .workflow-cta {
    margin-bottom: 30px;
  }
}

.workflow-progress {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  padding-top: 20px;
  align-self: flex-start;
}
.workflow-progress::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #e5e7eb;
  transform: translateX(-50%);
  z-index: 0;
}
.workflow-progress::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  width: 2px;
  background: #F25220;
  transform: translateX(-50%);
  transform-origin: top;
  height: 0;
  transition: height 0.4s ease;
  z-index: 1;
}
.workflow-progress.progress-1::after {
  height: 0%;
}
.workflow-progress.progress-2::after {
  height: 30%;
}
.workflow-progress.progress-3::after {
  height: 60%;
}
.workflow-progress.progress-4::after {
  height: 90%;
}
@media screen and (max-width: 1280px) {
  .workflow-progress {
    display: none;
  }
}

.workflow-section--compact .progress-item {
  margin: 32px 0;
}
.workflow-section--compact .workflow-step {
  min-height: 300px;
}
.workflow-section--compact .workflow-progress.progress-1::after {
  height: 0%;
}
.workflow-section--compact .workflow-progress.progress-2::after {
  height: 20%;
}
.workflow-section--compact .workflow-progress.progress-3::after {
  height: 40%;
}
.workflow-section--compact .workflow-progress.progress-4::after {
  height: 60%;
}
.workflow-section--compact .workflow-progress.progress-5::after {
  height: 80%;
}
.workflow-section--compact .workflow-progress.progress-6::after {
  height: 95%;
}

.progress-item {
  position: relative;
  z-index: 2;
  margin: 60px 0;
  opacity: 0.3;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.progress-item:first-child {
  margin-top: 0;
}
.progress-item:last-child {
  margin-bottom: 0;
}
.progress-item.is-active {
  opacity: 1;
}
.progress-item.is-active .progress-number {
  background: #F25220;
  color: #FFFFFF;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(242, 82, 32, 0.3);
}
.progress-item .progress-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #e5e7eb;
  color: rgba(29, 29, 29, 0.5);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1280px) {
  .progress-item .progress-number {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
}

.workflow-right {
  position: relative;
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.workflow-step {
  background: #f9fafb;
  border-radius: 24px;
  padding: 60px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  opacity: 0.5;
}
.workflow-step.is-active {
  opacity: 1;
  background: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateX(0);
}
.workflow-step.is-active .workflow-step-number {
  color: #F25220;
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .workflow-step {
    padding: 40px 30px;
    min-height: 300px;
  }
}

.workflow-step-number {
  font-size: 120px;
  font-weight: 700;
  color: rgba(29, 29, 29, 0.08);
  line-height: 1;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .workflow-step-number {
    font-size: 80px;
    line-height: 1.2;
  }
}

.workflow-step-title {
  font-size: 32px;
  font-weight: 700;
  color: #1D1D1D;
  margin-bottom: 16px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .workflow-step-title {
    font-size: 20px;
    line-height: 1.3;
  }
}

.workflow-step-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(29, 29, 29, 0.7);
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .workflow-step-text {
    font-size: 14px;
  }
}

.contact-cta-section {
  position: relative;
  overflow-x: clip;
}
.contact-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 70% at 86% 32%, rgba(25, 156, 168, 0.16) 0%, rgba(25, 156, 168, 0.06) 42%, transparent 68%);
}
.contact-cta-section__shell {
  position: relative;
  z-index: 1;
}
.contact-cta-section__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(340px, 0.54fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
}
.contact-cta-section__content {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vw, 24px);
  padding-top: clamp(4px, 0.6vw, 8px);
}
.contact-cta-section__intro .page-section-title__sub {
  max-width: 38ch;
}
.contact-cta-section__channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-cta-section__channels li {
  flex: 1 1 min(100%, 240px);
  min-width: 0;
}
.contact-cta-section__channel {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(29, 29, 29, 0.08);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  color: #1D1D1D;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) {
  .contact-cta-section__channel:hover {
    transform: translateY(-2px);
    border-color: rgba(25, 156, 168, 0.35);
    box-shadow: 0 12px 28px rgba(29, 29, 29, 0.08);
  }
}
@media (hover: hover) {
  .contact-cta-section__channel--email:hover {
    border-color: rgba(242, 82, 32, 0.35);
  }
}
.contact-cta-section__channel--email .contact-cta-section__channel-icon {
  background: rgba(242, 82, 32, 0.12);
  color: #F25220;
}
.contact-cta-section__channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(25, 156, 168, 0.12);
  color: #199CA8;
}
.contact-cta-section__channel-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-cta-section__channel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.5);
}
.contact-cta-section__channel-value {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}
.contact-cta-section__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-cta-section__trust li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(29, 29, 29, 0.68);
}
.contact-cta-section__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F25220;
  box-shadow: 0 0 0 3px rgba(242, 82, 32, 0.2);
}
.contact-cta-section__form-panel {
  position: relative;
  width: 100%;
  padding: clamp(18px, 2vw, 24px);
  border-radius: clamp(16px, 2vw, 22px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(29, 29, 29, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 12px 32px rgba(29, 29, 29, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.contact-cta-section__form-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  border-radius: clamp(16px, 2vw, 22px) 0 0 clamp(16px, 2vw, 22px);
  pointer-events: none;
}
.contact-cta-section__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.contact-cta-section__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
.contact-cta-section__form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-cta-section__form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.contact-cta-section__form .form-field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(29, 29, 29, 0.82);
}
.contact-cta-section__form .form-field label span {
  color: #F25220;
}
.contact-cta-section__form .form-field input,
.contact-cta-section__form .form-field textarea {
  width: 100%;
  border: 1px solid rgba(29, 29, 29, 0.12);
  border-radius: 8px;
  background: #FFFFFF;
  padding: 11px 14px;
  font-size: 15px;
  line-height: 1.4;
  color: #1D1D1D;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-cta-section__form .form-field input::placeholder,
.contact-cta-section__form .form-field textarea::placeholder {
  color: rgba(29, 29, 29, 0.38);
}
.contact-cta-section__form .form-field input:hover,
.contact-cta-section__form .form-field textarea:hover {
  border-color: rgba(29, 29, 29, 0.2);
}
.contact-cta-section__form .form-field input:focus,
.contact-cta-section__form .form-field textarea:focus {
  outline: none;
  border-color: rgba(25, 156, 168, 0.65);
  box-shadow: 0 0 0 3px rgba(25, 156, 168, 0.16);
}
.contact-cta-section__form .form-field textarea {
  min-height: calc(2.8em + 22px);
  height: calc(2.8em + 22px);
  max-height: calc(11.2em + 22px);
  resize: vertical;
  overflow-y: auto;
  field-sizing: fixed;
}
.contact-cta-section__form .form-field--full {
  grid-column: 1/-1;
}
.contact-cta-section__form .form-field.error input, .contact-cta-section__form .form-field.error textarea {
  border-color: rgba(242, 82, 32, 0.75);
  box-shadow: 0 0 0 3px rgba(242, 82, 32, 0.12);
}
.contact-cta-section__upload input[type=file] {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px dashed rgba(29, 29, 29, 0.18);
  border-radius: 12px;
  background: rgba(241, 241, 241, 0.45);
  cursor: pointer;
}
.contact-cta-section__upload input[type=file]::file-selector-button {
  margin-right: 10px;
  padding: 6px 12px;
  border: none;
  border-radius: 999px;
  background: rgba(25, 156, 168, 0.14);
  color: #199CA8;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
.contact-cta-section__upload-hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(29, 29, 29, 0.5);
}
.contact-cta-section__form-foot {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas: "result result" "btn consent";
  align-items: center;
  gap: 12px 16px;
}
.contact-cta-section__form-foot .contact-form-result {
  grid-area: result;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.contact-cta-section__form-foot .contact-form-result:empty {
  display: none;
}
.contact-cta-section__form-foot .btn {
  grid-area: btn;
  justify-self: start;
  width: auto;
  min-width: 0;
}
.contact-cta-section__consent {
  grid-area: consent;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(29, 29, 29, 0.52);
  text-align: right;
  align-self: center;
  justify-self: end;
}
.contact-cta-section__consent-link {
  color: #199CA8;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(25, 156, 168, 0.35);
}
@media (hover: hover) {
  .contact-cta-section__consent-link:hover {
    text-decoration-color: #199CA8;
  }
}
@media screen and (max-width: 768px) {
  .contact-cta-section__layout {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 28px);
  }
  .contact-cta-section__fields {
    grid-template-columns: 1fr;
  }
  .contact-cta-section__form-foot {
    grid-template-columns: 1fr;
    grid-template-areas: "result" "btn" "consent";
    gap: 12px;
  }
  .contact-cta-section__form-foot .btn {
    justify-self: start;
    width: auto;
  }
  .contact-cta-section__consent {
    justify-self: stretch;
    max-width: none;
    text-align: left;
  }
}

.credentials-cta {
  padding: 14px 0 26px;
}
.credentials-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 40px;
  align-items: center;
  background: #1D1D1D;
  border-radius: 24px;
  padding: 44px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .credentials-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px;
  }
}
.credentials-cta__inner::before {
  content: "";
  position: absolute;
  right: -88px;
  top: -86px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 82, 32, 0.4), transparent 70%);
  pointer-events: none;
}
.credentials-cta__left, .credentials-cta__right {
  position: relative;
  z-index: 1;
}
.credentials-cta__title {
  margin: 0;
  font-size: clamp(29px, 2.2vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  max-width: 18ch;
}
.credentials-cta__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.credentials-cta__badges span {
  font-size: 12px;
  line-height: 1.2;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
}
.credentials-cta__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.credentials-cta__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}
.credentials-cta__list li::before {
  content: "✓";
  color: #F25220;
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}
.credentials-cta__right .btn, .credentials-cta__right a.btn {
  margin-top: 22px;
}

.cltr-turnstile-wrap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brands-grid-section--grouped {
  padding: 40px 0;
}
.brands-grid-section--grouped .brands-groups {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.brands-grid-section--grouped .brands-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.brands-grid-section--grouped .brands-group__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1D1D1D;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
}
.brands-grid-section--grouped .hv-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .brands-grid-section--grouped .hv-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (min-width: 1024px) {
  .brands-grid-section--grouped .hv-brands-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}
.brands-grid-section--grouped .hv-brand-card-link {
  text-decoration: none;
}
.brands-grid-section--grouped .hv-brand-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1280px) {
  .brands-grid-section--grouped .hv-brand-card {
    min-height: 150px;
  }
}
.brands-grid-section--grouped .hv-brand-card-bg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.brands-grid-section--grouped .hv-brand-card-bg img {
  max-width: 34%;
  max-height: 34%;
  object-fit: contain;
  transition: none;
}
.brands-grid-section--grouped .hv-brand-card-corner,
.brands-grid-section--grouped .hv-brand-card-overlay,
.brands-grid-section--grouped .hv-brand-card-content,
.brands-grid-section--grouped .hv-brand-card-arrow {
  display: none;
}
.brands-grid-section--grouped .hv-brand-card-link:hover .hv-brand-card img,
.brands-grid-section--grouped .hv-brand-card-link:focus .hv-brand-card img,
.brands-grid-section--grouped .hv-brand-card-link:hover .hv-brand-card,
.brands-grid-section--grouped .hv-brand-card-link:focus .hv-brand-card {
  transform: none;
  opacity: 1;
}
.brands-grid-section--grouped .brands-cta {
  text-align: center;
  margin-top: 32px;
}
.brands-grid-section--grouped .brands-cta button,
.brands-grid-section--grouped .brands-cta a[role=button] {
  min-width: 200px;
  background: linear-gradient(90deg, #199CA8 0%, #28CFD7 100%);
  border-color: transparent;
}
.brands-grid-section--grouped .brands-cta button:hover,
.brands-grid-section--grouped .brands-cta a[role=button]:hover {
  filter: brightness(1.08);
}

.brands-grid-section--all {
  padding: 40px 0;
}
.brands-grid-section--all .hv-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .brands-grid-section--all .hv-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .brands-grid-section--all .hv-brands-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
}
.brands-grid-section--all .hv-brand-card-link {
  text-decoration: none;
}
.brands-grid-section--all .hv-brand-card {
  position: relative;
  background: #FFF6F3;
  border-radius: 24px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1280px) {
  .brands-grid-section--all .hv-brand-card {
    min-height: 300px;
  }
}
.brands-grid-section--all .hv-brand-card-bg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.brands-grid-section--all .hv-brand-card-bg img {
  max-width: 65%;
  max-height: 65%;
  object-fit: contain;
  transition: transform 280ms ease;
}
.brands-grid-section--all .hv-brand-card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background: #FFFFFF;
  border-radius: 0 0 0 24px;
  pointer-events: none;
  z-index: 1;
}
.brands-grid-section--all .hv-brand-card-corner::after {
  content: "";
  position: absolute;
  bottom: 24px;
  left: -45px;
  width: 70px;
  height: 70px;
  rotate: -90deg;
  background-image: url("/wp-content/themes/cltr-theme/assets/images/brand-card-corner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border-radius: 0 0 0 24px;
}
.brands-grid-section--all .hv-brand-card-corner::before {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -48px;
  width: 70px;
  height: 70px;
  rotate: -90deg;
  background-image: url("/wp-content/themes/cltr-theme/assets/images/brand-card-corner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border-radius: 0 0 0 24px;
}
.brands-grid-section--all .hv-brand-card-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFF6F3;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  z-index: 2;
}
.brands-grid-section--all .hv-brand-card-arrow svg {
  width: 18px;
  height: 18px;
}
.brands-grid-section--all .hv-brand-card-arrow svg path {
  stroke: #F25A00;
}
.brands-grid-section--all .hv-brand-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 122, 0, 0.12) 0%, rgba(255, 100, 0, 0.35) 36%, rgba(255, 90, 0, 0.92) 60%, rgb(255, 90, 0) 100%);
  opacity: 0;
  transition: opacity 260ms ease;
}
.brands-grid-section--all .hv-brand-card-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 40px;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms ease, transform 240ms ease;
}
.brands-grid-section--all .hv-brand-card-content .hv-brand-card-title {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-transform: uppercase;
}
.brands-grid-section--all .hv-brand-card-content .hv-brand-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #FFFFFF;
}
.brands-grid-section--all .hv-brand-card-link:hover .hv-brand-card img,
.brands-grid-section--all .hv-brand-card-link:focus .hv-brand-card img {
  transform: scale(1.2);
}
.brands-grid-section--all .hv-brand-card-link:hover .hv-brand-card-overlay,
.brands-grid-section--all .hv-brand-card-link:focus .hv-brand-card-overlay {
  opacity: 1;
}
.brands-grid-section--all .hv-brand-card-link:hover .hv-brand-card-content,
.brands-grid-section--all .hv-brand-card-link:focus .hv-brand-card-content {
  opacity: 1;
  transform: translateY(0);
}
.brands-grid-section--all .hv-brand-card-link:hover .hv-brand-card-arrow,
.brands-grid-section--all .hv-brand-card-link:focus .hv-brand-card-arrow,
.brands-grid-section--all .hv-brand-card-arrow:hover {
  background: linear-gradient(180deg, #FF7A00 0%, #FF5A00 100%);
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.28);
  transform: translateY(-2px);
}
.brands-grid-section--all .hv-brand-card-link:hover .hv-brand-card-arrow svg path,
.brands-grid-section--all .hv-brand-card-link:focus .hv-brand-card-arrow svg path,
.brands-grid-section--all .hv-brand-card-arrow:hover svg path {
  stroke: #FFFFFF;
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(4px);
  }
}
.shake-animation {
  animation: shake 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .shake-animation {
    animation: none;
  }
}
.discover-section {
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.discover-section-text {
  max-width: 860px;
  margin: 0 auto clamp(20px, 2.5vw, 32px);
  text-align: center;
}
.discover-section-text .component-eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.discover-section-text h2 {
  margin: 0;
  text-align: center;
}
.discover-section-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.discover-section .discover-stat-item {
  --discover-offset-y: 0px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 360px;
  padding: 20px;
  opacity: 0;
  transform: translateY(calc(var(--discover-offset-y) + 54px));
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease;
}
.discover-section .discover-stat-item:nth-child(even) {
  --discover-offset-y: 82px;
}
.discover-section .discover-stat-item:nth-child(odd) {
  --discover-offset-y: -42px;
}
.discover-section-container.is-animated .discover-section .discover-stat-item, .is-animated .discover-section .discover-stat-item {
  opacity: 1;
  transform: translateY(var(--discover-offset-y));
}
.discover-section .discover-stat-item:nth-child(1) {
  transition-delay: 0.06s;
}
.discover-section .discover-stat-item:nth-child(2) {
  transition-delay: 0.14s;
}
.discover-section .discover-stat-item:nth-child(3) {
  transition-delay: 0.22s;
}
.discover-section .discover-stat-item:nth-child(4) {
  transition-delay: 0.3s;
}
.discover-section .discover-stat-label {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(29, 29, 29, 0.18);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.65);
  min-height: 46px;
}
.discover-section .discover-stat-value {
  margin: 0;
  font-size: clamp(64px, 5.8vw, 100px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #F25220;
}
.discover-section .discover-counter-suffix {
  font-size: 0.62em;
  font-weight: 500;
  opacity: 0.8;
  margin-left: 0.08em;
  vertical-align: baseline;
}
.discover-section .discover-stat-description {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(29, 29, 29, 0.84);
  max-width: 340px;
}
@media screen and (max-width: 1280px) {
  .discover-section {
    padding: 56px 44px;
  }
  .discover-section-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
  }
  .discover-section .discover-stat-item:nth-child(even),
  .discover-section .discover-stat-item:nth-child(odd) {
    --discover-offset-y: 0px;
  }
}
@media screen and (max-width: 768px) {
  .discover-section {
    padding: 36px 0;
  }
  .discover-section-text {
    margin-inline: 0;
    margin-bottom: 0;
    text-align: left;
  }
  .discover-section-text .component-eyebrow {
    margin-left: 0;
    margin-right: auto;
  }
  .discover-section-text h2 {
    font-size: 30px;
    line-height: 1.1;
    text-align: left;
  }
  .discover-section-stats {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .discover-section .discover-stat-item {
    min-height: 0;
    gap: 16px;
    transform: translateY(24px);
  }
  .discover-section-container.is-animated .discover-section .discover-stat-item, .is-animated .discover-section .discover-stat-item {
    transform: translateY(0);
  }
  .discover-section .discover-stat-label {
    font-size: 11px;
    min-height: auto;
  }
  .discover-section .discover-stat-value {
    font-size: clamp(38px, 10.5vw, 50px);
    line-height: 1;
  }
  .discover-section .discover-stat-description {
    font-size: 16px;
    max-width: none;
  }
}

.feature-card {
  position: relative;
  background: #f1f1f1;
  border-radius: 24px;
  padding: 30px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease;
  padding-top: 120px;
}
.feature-card:hover .feature-image-overflow img {
  transform: translateY(-20px);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1)) grayscale(0%);
}
.feature-card .feature-content {
  position: relative;
  z-index: 2;
}
.feature-card .feature-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1D1D1D;
  margin-bottom: 12px;
}
.feature-card .feature-content p {
  font-size: 15px;
  line-height: 140%;
  color: #1D1D1D;
}
.feature-card .feature-image {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.feature-card .feature-image-overflow {
  top: -120px;
  right: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.feature-card .feature-image-overflow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1)) grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.feature-card .feature-image-contained {
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 16px;
}
.feature-card .feature-image-contained svg {
  color: #1D1D1D;
  opacity: 0.15;
}
@media screen and (max-width: 768px) {
  .feature-card {
    min-height: 240px;
    padding: 24px;
    padding-top: 140px;
  }
  .feature-card .feature-image-overflow {
    width: 100%;
    height: 180px;
    top: -20px;
    right: 0;
  }
  .feature-card .feature-content h3 {
    font-size: 20px;
  }
  .feature-card .feature-content p {
    font-size: 14px;
  }
}

/* Videos grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.video-card {
  transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.36s ease;
  will-change: transform;
}

@media screen and (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}
.video-card .caption {
  margin-top: 10px;
  color: #1d1d1d;
  opacity: 0.8;
  font-size: 14px;
}

.ratio-16x9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
}

.ratio-16x9 {
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.ratio-16x9:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.ratio-16x9 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ratio-9x16 {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.ratio-9x16:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.ratio-9x16 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Before / After */
.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 640px) {
  .before-after {
    grid-template-columns: 1fr;
  }
}
.ba-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.ba-media {
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.ba-media:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

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

.ba-label {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.ba-label-before {
  background: rgba(29, 29, 29, 0.85);
}

.ba-label-after {
  background: #f25220;
}

/* Google-like reviews scroller (no Swiper) */
.gr-slider-wrap {
  position: relative;
}

.gr-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1d1d;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gr-prev {
  left: -12px;
}

.gr-next {
  right: -12px;
}

.gr-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 12px;
}

.gr-item {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gr-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.gr-slider:focus {
  outline: none;
}

.gr-item {
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 16px;
  min-height: 140px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.gr-stars {
  color: #f59e0b;
  margin-bottom: 8px;
}

.gr-text {
  color: #1d1d1d;
  font-size: 14px;
  line-height: 1.6;
}

.gr-author {
  margin-top: 8px;
  color: #6b7280;
  font-size: 13px;
}

.gr-footnote {
  margin-bottom: 24px;
  color: #1d1d1d;
  opacity: 0.8;
  font-weight: 600;
  text-align: left;
}

/* How It Works Page (SCSS) - OLD STYLES KEPT FOR COMPATIBILITY */
.howit-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1D1D1D;
  margin-bottom: 32px;
}

.page-section.howit-section {
  margin-top: 40px;
  max-height: unset;
}

.howit-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 32px;
  --line-progress: 0;
}
.howit-timeline::after, .howit-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  border-radius: 999px;
  z-index: -1;
}
.howit-timeline::after {
  top: 0;
  bottom: 0;
  background: rgba(229, 231, 235, 0.6);
}
.howit-timeline::before {
  top: 0;
  height: calc(var(--line-progress) * 100%);
  background: linear-gradient(180deg, rgba(25, 156, 168, 0.55) 0%, rgba(242, 82, 32, 0.65) 100%);
  transition: height 0.6s ease-out;
}

.howit-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
}
.howit-step::before {
  content: attr(data-step);
  position: absolute;
  left: 50%;
  top: -2%;
  transform: translate(-50%, -50%) scale(1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #199CA8;
  color: #FFFFFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.howit-step .howit-media {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.howit-step .howit-media img {
  width: 90%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.howit-step .howit-content {
  padding-left: 8px;
}
.howit-step .howit-content .howit-step-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F25220;
  font-weight: 700;
}
.howit-step .howit-content h3 {
  font-size: 36px;
  font-weight: 700;
  color: #1D1D1D;
  margin-bottom: 8px;
}
.howit-step .howit-content p {
  color: #1D1D1D;
  opacity: 0.8;
  line-height: 1.6;
}

.howit-cta {
  text-align: center;
  margin-top: 40px;
}
.howit-cta .btn {
  min-width: 200px;
}

@media screen and (max-width: 768px) {
  .howit-header h1 {
    font-size: 28px;
  }
  .howit-content h3 {
    font-size: 20px;
  }
  .howit-content p {
    font-size: 14px;
  }
  .howit-timeline {
    gap: 24px;
  }
  .howit-timeline::before {
    left: 24px;
    transform: none;
  }
  .howit-step {
    grid-template-columns: 1fr;
    padding-left: 56px;
  }
  .howit-step::before {
    left: 24px;
    top: 24px;
    transform: none;
    width: 32px;
    height: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
/* Instant hide when progress reaches 1 (JS adds .hero-finished) */
.hero-section.hero-finished {
  visibility: hidden;
}

.services-section {
  min-height: auto;
  display: flex;
  align-items: stretch;
}
.services-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}
.services-section__header .component-eyebrow {
  margin: 0 auto;
}
.services-section__title {
  margin: 0;
}
.services-section__subtitle {
  margin: 0;
  max-width: 640px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  color: rgba(29, 29, 29, 0.72);
  text-wrap: balance;
}
.services-section__cta {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
}
.services-section__cta .btn {
  min-width: 240px;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, 1fr);
  gap: clamp(12px, 1.5vw, 16px);
  min-height: clamp(680px, 72vh, 1020px);
}
.services-bento__card {
  position: relative;
  display: block;
  min-height: 100%;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #FFFFFF;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.services-bento__card:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1;
}
.services-bento__card:nth-child(2) {
  grid-column: 3/5;
  grid-row: 1;
}
.services-bento__card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}
.services-bento__card:nth-child(4) {
  grid-column: 2/4;
  grid-row: 2;
}
.services-bento__card:nth-child(5) {
  grid-column: 4;
  grid-row: 2;
}
@media (hover: hover) {
  .services-bento__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(29, 29, 29, 0.14);
  }
}
.services-bento__card:focus-visible {
  outline: 2px solid #F25220;
  outline-offset: 3px;
}
.services-bento__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services-bento__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-bento__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.35) 65%, rgba(0, 0, 0, 0.78) 100%);
}
.services-bento__content {
  position: absolute;
  z-index: 1;
  left: clamp(16px, 2vw, 28px);
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 42ch;
}
.services-bento__title {
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.services-bento__description {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: pretty;
}
.services-bento__card:nth-child(3) .services-bento__content, .services-bento__card:nth-child(5) .services-bento__content {
  max-width: 100%;
}
.services-bento__card:nth-child(3) .services-bento__description, .services-bento__card:nth-child(5) .services-bento__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: clamp(12px, 1.1vw, 13px);
}
@media screen and (max-width: 768px) {
  .services-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  .services-bento__card {
    min-height: clamp(240px, 62vw, 360px);
  }
  .services-bento__card:nth-child(1), .services-bento__card:nth-child(2), .services-bento__card:nth-child(3), .services-bento__card:nth-child(4), .services-bento__card:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }
}

@media screen and (max-width: 768px) {
  .services-section {
    padding: 40px 0;
  }
  .services-section__header {
    margin-bottom: 32px;
    gap: 10px;
  }
  .services-section__title {
    font-size: 28px;
  }
  .services-section__subtitle {
    font-size: 15px;
  }
}

.home-services-cards-section__shell {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
}
.home-services-cards-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .home-services-cards-section__header {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
.home-services-cards-section__intro {
  min-width: 0;
}
.home-services-cards-section__intro .page-section-title .component-eyebrow {
  margin-left: 0;
  margin-right: auto;
}
.home-services-cards-section__intro .page-section-title .page-section-title__heading {
  max-width: min(720px, 100%);
  text-wrap: balance;
}
.home-services-cards-section__cta {
  justify-self: end;
  align-self: center;
  flex-shrink: 0;
}
.home-services-cards-section__cta .btn {
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .home-services-cards-section__cta {
    justify-self: start;
    align-self: start;
    width: auto;
  }
}
.home-services-cards-section__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}
.home-services-cards-section__card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(22px, 2.5vw, 28px);
  border: 1px solid rgba(29, 29, 29, 0.1);
  border-radius: 16px;
  background: #FFFFFF;
  color: #1D1D1D;
  text-decoration: none;
  transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.home-services-cards-section__card:nth-child(4) {
  grid-column: 1/span 2;
}
.home-services-cards-section__card:nth-child(5) {
  grid-column: 3/span 2;
}
.home-services-cards-section__card:nth-child(6) {
  grid-column: 5/span 2;
}
.home-services-cards-section__card--help {
  text-align: center;
  align-items: center;
  cursor: default;
  background: linear-gradient(145deg, rgba(25, 156, 168, 0.08) 0%, rgba(242, 82, 32, 0.06) 100%);
  border-style: dashed;
  border-color: rgba(242, 82, 32, 0.32);
}
.home-services-cards-section__card--help .home-services-cards-section__card-excerpt,
.home-services-cards-section__card--help .home-services-cards-section__card-list {
  text-align: left;
}
.home-services-cards-section__card--help .home-services-cards-section__card-list {
  margin-bottom: auto;
}
@media (hover: hover) {
  .home-services-cards-section__card:hover, .home-services-cards-section__card:focus-visible {
    background: linear-gradient(135deg, rgba(25, 156, 168, 0.35) 0%, transparent 55%), #1D1D1D;
    border-color: #1D1D1D;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(29, 29, 29, 0.22);
    transform: translateY(-2px);
  }
  .home-services-cards-section__card:hover .home-services-cards-section__card-index,
  .home-services-cards-section__card:hover .home-services-cards-section__card-label, .home-services-cards-section__card:focus-visible .home-services-cards-section__card-index,
  .home-services-cards-section__card:focus-visible .home-services-cards-section__card-label {
    color: #FFFFFF;
  }
  .home-services-cards-section__card:hover .home-services-cards-section__card-list li::before, .home-services-cards-section__card:focus-visible .home-services-cards-section__card-list li::before {
    color: rgba(255, 255, 255, 0.9);
  }
  .home-services-cards-section__card:hover .home-services-cards-section__card-tags li, .home-services-cards-section__card:focus-visible .home-services-cards-section__card-tags li {
    background: rgba(255, 255, 255, 0.14);
    color: #FFFFFF;
  }
  .home-services-cards-section__card:hover .home-services-cards-section__card-timeline-label, .home-services-cards-section__card:focus-visible .home-services-cards-section__card-timeline-label {
    color: rgba(255, 255, 255, 0.72);
  }
  .home-services-cards-section__card:hover .home-services-cards-section__card-divider, .home-services-cards-section__card:focus-visible .home-services-cards-section__card-divider {
    border-color: rgba(255, 255, 255, 0.28);
  }
  .home-services-cards-section__card:hover.home-services-cards-section__card--help, .home-services-cards-section__card:focus-visible.home-services-cards-section__card--help {
    border-color: rgba(255, 255, 255, 0.28);
  }
  .home-services-cards-section__card:hover.home-services-cards-section__card--help .home-services-cards-section__card-help-badge, .home-services-cards-section__card:focus-visible.home-services-cards-section__card--help .home-services-cards-section__card-help-badge {
    background: rgba(255, 255, 255, 0.14);
    color: #FFFFFF;
  }
}
.home-services-cards-section__card-help-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F25220;
  background: rgba(242, 82, 32, 0.1);
  transition: background-color 0.28s ease, color 0.28s ease;
}
.home-services-cards-section__card-help-footer {
  margin-top: auto;
  padding-top: clamp(16px, 2vw, 20px);
  width: 100%;
}
.home-services-cards-section__card-help-footer .btn {
  width: auto;
  max-width: 100%;
}
.home-services-cards-section__card-index {
  display: block;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #F25220;
  transition: color 0.28s ease;
}
.home-services-cards-section__card-title {
  margin: 0 0 14px;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 700;
  line-height: 1.25;
}
.home-services-cards-section__card-excerpt {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: inherit;
  opacity: 0.88;
}
.home-services-cards-section__card-divider {
  display: block;
  margin: 0 0 16px;
  border-top: 1px dotted rgba(29, 29, 29, 0.1);
  transition: border-color 0.28s ease;
}
.home-services-cards-section__card-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F25220;
  transition: color 0.28s ease;
}
.home-services-cards-section__card-label::before {
  content: "— ";
}
.home-services-cards-section__card-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.home-services-cards-section__card-list li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.45;
}
.home-services-cards-section__card-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #F25220;
  transition: color 0.28s ease;
}
.home-services-cards-section__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 auto;
  padding: 0 0 20px;
  list-style: none;
}
.home-services-cards-section__card-tags li {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(29, 29, 29, 0.06);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(29, 29, 29, 0.72);
  transition: background-color 0.28s ease, color 0.28s ease;
}
.home-services-cards-section__card-footer {
  margin-top: auto;
  padding-top: 8px;
}
.home-services-cards-section__card-timeline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home-services-cards-section__card-timeline-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.45);
  transition: color 0.28s ease;
}
.home-services-cards-section__card-timeline-value {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 1100px) {
  .home-services-cards-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-services-cards-section__card, .home-services-cards-section__card:nth-child(4), .home-services-cards-section__card:nth-child(5), .home-services-cards-section__card:nth-child(6) {
    grid-column: auto;
  }
}
@media screen and (max-width: 768px) {
  .home-services-cards-section__intro .section-heading {
    max-width: none;
  }
  .home-services-cards-section__grid {
    grid-template-columns: 1fr;
  }
}

.trust-values-section__shell {
  padding: 0;
}
.trust-values-section__intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: clamp(20px, 2.5vw, 28px);
}
.trust-values-section__header {
  flex: 0 0 auto;
  max-width: min(640px, 100%);
  margin: 0;
  text-align: left;
}
.trust-values-section__header .page-section-title {
  gap: 16px;
}
.trust-values-section__header .page-section-title .component-eyebrow {
  margin-left: 0;
  margin-right: auto;
}
.trust-values-section__tabs {
  flex: 1 1 280px;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  align-content: flex-end;
  gap: 12px;
}
.trust-values-section__tab {
  flex-shrink: 0;
  padding: 12px 20px;
  border: 2px solid rgba(25, 156, 168, 0.35);
  border-radius: 999px;
  background: #FFFFFF;
  color: #199CA8;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.trust-values-section__tab.is-active {
  background: linear-gradient(90deg, #199CA8 0%, #28CFD7 100%);
  border-color: transparent;
  color: #FFFFFF;
}
@media (hover: hover) {
  .trust-values-section__tab:hover:not(.is-active) {
    border-color: #199CA8;
    background: rgba(25, 156, 168, 0.08);
  }
}
.trust-values-section__tab:focus-visible {
  outline: 2px solid #199CA8;
  outline-offset: 2px;
}
.trust-values-section__bento {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.75fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}
.trust-values-section__panels {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0c0c0e;
  box-shadow: 0 24px 56px -28px rgba(0, 0, 0, 0.45);
}
.trust-values-section__panels::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.5;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 85%);
  pointer-events: none;
}
.trust-values-section__panels::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(46% 60% at 28% 36%, rgba(242, 82, 32, 0.48), transparent 62%);
  pointer-events: none;
}
.trust-values-section__panels {
  min-height: clamp(320px, 36vw, 420px);
  border-radius: 24px;
}
.trust-values-section__panel {
  display: none;
  position: relative;
  z-index: 1;
  min-height: clamp(360px, 38vw, 480px);
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  color: #FFFFFF;
}
.trust-values-section__panel.is-active {
  display: block;
}
.trust-values-section__aside {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}
.trust-values-section__proof-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0c0c0e;
  box-shadow: 0 24px 56px -28px rgba(0, 0, 0, 0.45);
}
.trust-values-section__proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.5;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 85%);
  pointer-events: none;
}
.trust-values-section__proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(52% 58% at 78% 18%, rgba(242, 82, 32, 0.44), transparent 62%);
  pointer-events: none;
}
.trust-values-section__proof-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(22px, 2.5vw, 28px);
  border-radius: 24px;
  color: #FFFFFF;
}
.trust-values-section__proof-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(20px, 2.5vw, 28px);
  min-height: 100%;
}
.trust-values-section__proof-lead {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  line-height: 1.4;
  text-wrap: balance;
  color: rgba(255, 255, 255, 0.92);
}
.trust-values-section__proof-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}
.trust-values-section__proof-stat-value {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
.trust-values-section__proof-stat-label {
  margin: 6px 0 0;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.68);
}
.trust-values-section__reviews-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0c0c0e;
  box-shadow: 0 24px 56px -28px rgba(0, 0, 0, 0.45);
}
.trust-values-section__reviews-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.5;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 85%);
  pointer-events: none;
}
.trust-values-section__reviews-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(50% 54% at 22% 82%, rgba(242, 82, 32, 0.42), transparent 62%);
  pointer-events: none;
}
.trust-values-section__reviews-card {
  flex: 1;
  min-height: 0;
  padding: clamp(22px, 2.5vw, 28px);
  border-radius: 24px;
  color: #FFFFFF;
  min-height: fit-content;
}
.trust-values-section__reviews-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 2vw, 24px);
  align-items: end;
}
.trust-values-section__reviews-body {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 18px);
  min-width: 0;
}
.trust-values-section__reviews-platforms {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 10px;
}
.trust-values-section__reviews-platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
@media (hover: hover) {
  .trust-values-section__reviews-platform:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
}
.trust-values-section__reviews-platform:focus-visible {
  outline: 2px solid #F25220;
  outline-offset: 2px;
}
.trust-values-section__reviews-platform-logo {
  display: inline-flex;
  align-items: center;
  height: 22px;
}
.trust-values-section__reviews-platform-logo svg {
  display: block;
  width: auto;
  height: 22px;
}
.trust-values-section__reviews-platform--yelp .trust-values-section__reviews-platform-logo svg {
  height: 20px;
}
.trust-values-section__reviews-avatars {
  display: flex;
  align-items: center;
}
.trust-values-section__reviews-avatar {
  flex-shrink: 0;
  width: clamp(40px, 4vw, 48px);
  height: clamp(40px, 4vw, 48px);
  margin-left: -10px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.trust-values-section__reviews-avatar:first-child {
  margin-left: 0;
}
.trust-values-section__reviews-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trust-values-section__reviews-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72);
}
.trust-values-section__reviews-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.trust-values-section__reviews-star {
  display: inline-flex;
  width: 14px;
  height: 14px;
  color: #F25220;
}
.trust-values-section__reviews-star svg {
  width: 100%;
  height: 100%;
}
.trust-values-section__reviews-headline {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
  color: #FFFFFF;
}
.trust-values-section__reviews-headline strong {
  font-weight: 700;
  color: #F25220;
}
@media screen and (max-width: 768px) {
  .trust-values-section__intro {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    min-width: 0;
    overflow: visible;
  }
  .trust-values-section__header {
    flex: none;
    max-width: none;
  }
  .trust-values-section__bento {
    grid-template-columns: 1fr;
  }
  .trust-values-section__panel {
    min-height: clamp(300px, 72vw, 380px);
  }
  .trust-values-section .trust-values-panel__brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-values-section__tabs {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: -20px;
    padding-right: 20px;
    padding-bottom: 6px;
    scroll-padding-inline: 20px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .trust-values-section__tabs::-webkit-scrollbar {
    display: none;
  }
  .trust-values-section__tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-size: 13px;
  }
  .trust-values-section__reviews-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .trust-values-section__reviews-platforms {
    flex-direction: row;
    align-items: center;
  }
}

@keyframes trust-values-panel-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes trust-values-metric-fill {
  from {
    width: 0;
  }
  to {
    width: var(--metric-fill, 0%);
  }
}
.trust-values-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  height: 100%;
  min-height: inherit;
  padding: clamp(28px, 3.5vw, 40px);
}
.trust-values-panel__title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}
.trust-values-panel__lead {
  margin: 0;
  max-width: 48ch;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
.trust-values-panel__checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-values-panel__check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.45;
}
.trust-values-panel__check-icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.trust-values-panel__check-icon svg {
  width: 12px;
  height: 12px;
  color: #FFFFFF;
}
.trust-values-panel__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.trust-values-panel__badge {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
}
.trust-values-panel__timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.trust-values-panel__timeline-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 20px;
  position: relative;
}
.trust-values-panel__timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: 4px;
  width: 2px;
  background: rgba(255, 255, 255, 0.35);
}
.trust-values-panel__timeline-step:last-child {
  padding-bottom: 0;
}
.trust-values-panel__timeline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.trust-values-panel__timeline-label {
  margin: 0 0 4px;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
  line-height: 1.25;
}
.trust-values-panel__timeline-desc {
  margin: 0;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.trust-values-panel__highlight {
  margin-top: auto;
  padding: clamp(16px, 2vw, 20px);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.trust-values-panel__highlight-value {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.trust-values-panel__highlight-label {
  margin: 8px 0 0;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}
.trust-values-panel__metrics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.trust-values-panel__metric-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.trust-values-panel__metric-label {
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.35;
}
.trust-values-panel__metric-value {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.trust-values-panel__metric-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}
.trust-values-panel__metric-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: #FFFFFF;
}
.trust-values-panel__note {
  margin: auto 0 0;
  padding-top: 4px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}
.trust-values-panel__brand-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.trust-values-panel__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.trust-values-panel__brand img {
  max-width: 100%;
  max-height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.trust-values-panel__tags {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-values-panel__tags li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.trust-values-section__panel.is-active .trust-values-panel__metric-fill {
  width: var(--metric-fill, 0%);
}

.trust-values-section__panel.is-active.is-entering .trust-values-panel__metric-fill {
  width: 0;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__check-item,
.trust-values-section__panel.is-active.is-entering .trust-values-panel__timeline-step,
.trust-values-section__panel.is-active.is-entering .trust-values-panel__metric,
.trust-values-section__panel.is-active.is-entering .trust-values-panel__brand,
.trust-values-section__panel.is-active.is-entering .trust-values-panel__badge,
.trust-values-section__panel.is-active.is-entering .trust-values-panel__tags li,
.trust-values-section__panel.is-active.is-entering .trust-values-panel__highlight {
  opacity: 0;
  animation: trust-values-panel-in 0.5s ease forwards;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__check-item:nth-child(1) {
  animation-delay: 0.05s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__check-item:nth-child(2) {
  animation-delay: 0.1s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__check-item:nth-child(3) {
  animation-delay: 0.15s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__check-item:nth-child(4) {
  animation-delay: 0.2s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__timeline-step:nth-child(1) {
  animation-delay: 0.05s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__timeline-step:nth-child(2) {
  animation-delay: 0.12s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__timeline-step:nth-child(3) {
  animation-delay: 0.19s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__metric:nth-child(1) {
  animation-delay: 0.08s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__metric:nth-child(2) {
  animation-delay: 0.16s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__metric:nth-child(3) {
  animation-delay: 0.24s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__brand:nth-child(1) {
  animation-delay: 0.04s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__brand:nth-child(2) {
  animation-delay: 0.08s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__brand:nth-child(3) {
  animation-delay: 0.12s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__brand:nth-child(4) {
  animation-delay: 0.16s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__brand:nth-child(5) {
  animation-delay: 0.2s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__brand:nth-child(6) {
  animation-delay: 0.24s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__brand:nth-child(7) {
  animation-delay: 0.28s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__brand:nth-child(8) {
  animation-delay: 0.32s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__metric-fill {
  animation: trust-values-metric-fill 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__metric:nth-child(1) .trust-values-panel__metric-fill {
  animation-delay: 0.2s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__metric:nth-child(2) .trust-values-panel__metric-fill {
  animation-delay: 0.35s;
}
.trust-values-section__panel.is-active.is-entering .trust-values-panel__metric:nth-child(3) .trust-values-panel__metric-fill {
  animation-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .trust-values-section__panel.is-active.is-entering .trust-values-panel__check-item,
  .trust-values-section__panel.is-active.is-entering .trust-values-panel__timeline-step,
  .trust-values-section__panel.is-active.is-entering .trust-values-panel__metric,
  .trust-values-section__panel.is-active.is-entering .trust-values-panel__brand,
  .trust-values-section__panel.is-active.is-entering .trust-values-panel__badge,
  .trust-values-section__panel.is-active.is-entering .trust-values-panel__tags li,
  .trust-values-section__panel.is-active.is-entering .trust-values-panel__highlight,
  .trust-values-section__panel.is-active.is-entering .trust-values-panel__metric-fill {
    animation: none;
    opacity: 1;
    width: var(--metric-fill, 100%);
  }
}
.home-values-alt-section__shell {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 40px);
}
.home-values-alt-section__header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.home-values-alt-section__header-copy {
  max-width: 720px;
}
.home-values-alt-section__header-copy .page-section-title__sub {
  max-width: 58ch;
}
.home-values-alt-section__cta {
  flex-shrink: 0;
  padding-top: 4px;
}
.home-values-alt-section__cta .btn {
  white-space: nowrap;
}
.home-values-alt-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-values-alt-section__cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: clamp(180px, 18vw, 220px);
  padding: clamp(22px, 2.2vw, 32px);
  border-right: 1px solid rgba(29, 29, 29, 0.1);
  border-bottom: 1px solid rgba(29, 29, 29, 0.1);
  background: #FFFFFF;
  text-align: left;
}
.home-values-alt-section__cell:nth-child(3n) {
  border-right: none;
}
.home-values-alt-section__cell:nth-child(n+7) {
  border-bottom: none;
}
@media (hover: hover) {
  .home-values-alt-section__cell {
    transition: background-color 0.22s ease;
  }
  .home-values-alt-section__cell:hover .home-values-alt-section__cell-title {
    color: #F25220;
  }
}
.home-values-alt-section__num {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(29, 29, 29, 0.45);
}
.home-values-alt-section__cell-title {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1D1D1D;
}
@media (hover: hover) {
  .home-values-alt-section__cell-title {
    transition: color 0.22s ease;
  }
}
.home-values-alt-section__cell-text {
  margin: 0;
  font-size: clamp(14px, 1.25vw, 15px);
  line-height: 1.55;
  color: rgba(29, 29, 29, 0.62);
  max-width: 36ch;
}
@media screen and (min-width: 1280px) {
  .home-values-alt-section__grid {
    position: relative;
    isolation: isolate;
    gap: 1px;
    background-color: rgba(117, 117, 117, 0.1);
  }
  .home-values-alt-section__grid::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-color: rgba(117, 117, 117, 0.1);
    opacity: 0;
  }
  .home-values-alt-section__cell {
    position: relative;
    z-index: 1;
    border: none;
    background-color: #FFFFFF;
  }
  .home-values-alt-section__cell:nth-child(3n), .home-values-alt-section__cell:nth-child(n+7) {
    border: none;
  }
}
@media screen and (min-width: 1280px) and (hover: hover) {
  .home-values-alt-section__cell:hover {
    background-color: color-mix(in srgb, #1D1D1D 4%, #FFFFFF);
  }
}
@media screen and (min-width: 1280px) and (hover: hover) and (prefers-reduced-motion: no-preference) {
  .home-values-alt-section__grid.is-grid-glow::before {
    opacity: 1;
    background-image: radial-gradient(ellipse 50vw 50vh at var(--mouse-x, -9999px) var(--mouse-y, -9999px), #F25220 0%, rgba(242, 82, 32, 0.55) 22%, rgba(242, 82, 32, 0.18) 48%, rgba(117, 117, 117, 0.1) 72%, rgba(117, 117, 117, 0.1) 100%);
  }
}
@media screen and (max-width: 1280px) {
  .home-values-alt-section__grid {
    gap: 0;
    background-color: transparent;
    background-image: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-values-alt-section__cell {
    z-index: auto;
    border-right: 1px solid rgba(29, 29, 29, 0.1);
    border-bottom: 1px solid rgba(29, 29, 29, 0.1);
  }
}
@media screen and (max-width: 1280px) and (hover: hover) {
  .home-values-alt-section__cell:hover {
    background-color: rgba(29, 29, 29, 0.035);
  }
}
@media screen and (max-width: 1280px) {
  .home-values-alt-section__cell:nth-child(3n) {
    border-right: 1px solid rgba(29, 29, 29, 0.1);
  }
  .home-values-alt-section__cell:nth-child(n+7) {
    border-bottom: 1px solid rgba(29, 29, 29, 0.1);
  }
  .home-values-alt-section__cell:nth-child(2n) {
    border-right: none;
  }
  .home-values-alt-section__cell:last-child {
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .home-values-alt-section__header-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-values-alt-section__cta {
    padding-top: 0;
  }
  .home-values-alt-section__grid {
    grid-template-columns: 1fr;
  }
  .home-values-alt-section__cell {
    min-height: 0;
    border-right: none;
  }
  .home-values-alt-section__cell:nth-child(2n), .home-values-alt-section__cell:nth-child(3n) {
    border-right: none;
  }
  .home-values-alt-section__cell:nth-child(n+7) {
    border-bottom: 1px solid rgba(29, 29, 29, 0.1);
  }
  .home-values-alt-section__cell:last-child {
    border-bottom: none;
  }
  .home-values-alt-section__cell-text {
    max-width: none;
  }
}

.dual-process-section__shell {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
}
.dual-process-section__header {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.dual-process-section__header .page-section-title {
  gap: clamp(10px, 1.2vw, 12px);
}
.dual-process-section__header .page-section-title .component-eyebrow {
  margin: 0 auto 12px;
}
.dual-process-section__header .page-section-title__sub {
  margin: 0 auto clamp(20px, 2.5vw, 28px);
  max-width: 58ch;
}
.dual-process-section__seg-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.dual-process-section__seg {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 4px;
  width: min(100%, 520px);
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(29, 29, 29, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.dual-process-section__seg-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 0;
  width: calc(50% - 6px);
  height: calc(100% - 8px);
  border-radius: 10px;
  background: #1D1D1D;
  box-shadow: 0 6px 20px rgba(29, 29, 29, 0.22);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.dual-process-section__seg-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(25, 156, 168, 0.35) 0%, transparent 55%);
  pointer-events: none;
}
.dual-process-section__seg[data-active-index="1"] > .dual-process-section__seg-thumb {
  transform: translateX(calc(100% + 4px));
}
.dual-process-section__flow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(29, 29, 29, 0.62);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}
.dual-process-section__flow.is-active {
  color: #FFFFFF;
}
.dual-process-section__flow.is-active .dual-process-section__flow-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
}
.dual-process-section__flow.is-active .dual-process-section__flow-tagline {
  color: rgba(255, 255, 255, 0.72);
}
@media (hover: hover) {
  .dual-process-section__flow:hover:not(.is-active) {
    color: #1D1D1D;
  }
  .dual-process-section__flow:hover:not(.is-active) .dual-process-section__flow-icon {
    background: rgba(25, 156, 168, 0.12);
    color: #199CA8;
  }
}
.dual-process-section__flow:focus-visible {
  outline: 2px solid #F25220;
  outline-offset: 2px;
}
.dual-process-section__flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(29, 29, 29, 0.06);
  color: #199CA8;
  transition: background 0.25s ease, color 0.25s ease;
}
.dual-process-section__flow-icon svg {
  display: block;
}
.dual-process-section__flow-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.dual-process-section__flow-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.dual-process-section__flow-tagline {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(29, 29, 29, 0.5);
  transition: color 0.25s ease;
}
.dual-process-section__panels {
  position: relative;
}
.dual-process-section__panel {
  display: none;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
}
.dual-process-section__panel.is-active {
  display: grid;
}
@media screen and (min-width: 1280px) {
  .dual-process-section__panel.is-active {
    align-items: stretch;
  }
}
.dual-process-section__panel[hidden] {
  display: none !important;
}
.dual-process-section__panel.is-entering .dual-process-section__detail-card.is-active {
  animation: dual-process-detail-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.dual-process-section__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1280px) {
  .dual-process-section__steps {
    height: 100%;
    min-height: 100%;
  }
  .dual-process-section__steps > li {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
  }
}
.dual-process-section__step-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.dual-process-section__step-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.45);
  transition: color 0.2s ease;
}
.dual-process-section__step.is-active .dual-process-section__step-meta {
  color: #199CA8;
}
.dual-process-section__step {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: clamp(14px, 1.6vw, 18px) clamp(16px, 2vw, 20px);
}
@media screen and (min-width: 1280px) {
  .dual-process-section__step {
    flex: 1;
    height: 100%;
    align-content: center;
  }
}
.dual-process-section__step {
  border: none;
  border-radius: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.dual-process-section__step.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  border-radius: 2px 2px 0 0;
}
@media (hover: hover) {
  .dual-process-section__step:hover:not(.is-active) {
    opacity: 0.85;
  }
}
.dual-process-section__step:focus-visible {
  outline: 2px solid #F25220;
  outline-offset: 2px;
}
.dual-process-section__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(29, 29, 29, 0.06);
  font-size: 13px;
  font-weight: 700;
  color: rgba(29, 29, 29, 0.55);
  transition: background 0.2s ease, color 0.2s ease;
}
.dual-process-section__step.is-active .dual-process-section__step-num {
  background: #F25220;
  color: #FFFFFF;
}
.dual-process-section__step-label {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  line-height: 1.35;
  color: #1D1D1D;
}
.dual-process-section__detail {
  position: sticky;
  top: calc(72px + var(--announcement-bar-height, 0px));
  display: grid;
  grid-template-columns: 1fr;
  min-height: 320px;
}
@media screen and (max-width: 1280px) {
  .dual-process-section__detail {
    position: relative;
    top: auto;
  }
}
.dual-process-section__detail-card {
  grid-area: 1/1;
  margin: 0;
  display: none;
  flex-direction: column;
  border-radius: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(29, 29, 29, 0.1);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}
.dual-process-section__detail-card.is-active {
  display: flex;
}
.dual-process-section__detail-card[hidden] {
  display: none !important;
}
@media screen and (max-width: 1280px) {
  .dual-process-section__detail-card {
    position: static;
  }
}
.dual-process-section__detail-stripe {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #199CA8 0%, #28CFD7 100%);
  flex-shrink: 0;
}
.dual-process-section__detail-body {
  padding: clamp(20px, 2.2vw, 28px) clamp(22px, 2.5vw, 28px) 0;
}
.dual-process-section__detail-num {
  margin: 0 0 4px;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: rgba(29, 29, 29, 0.08);
  pointer-events: none;
  user-select: none;
}
.dual-process-section__detail-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #199CA8;
}
.dual-process-section__detail-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #199CA8;
  flex-shrink: 0;
}
.dual-process-section__detail-title {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1D1D1D;
}
.dual-process-section__detail-desc {
  margin: 0;
  font-size: clamp(14px, 1.35vw, 15px);
  line-height: 1.7;
  color: rgba(29, 29, 29, 0.72);
  max-width: 75ch;
}
.dual-process-section__detail-points {
  list-style: none;
  margin: clamp(18px, 2vw, 22px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(29, 29, 29, 0.08);
}
.dual-process-section__detail-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px clamp(22px, 2.5vw, 28px);
  border-bottom: 1px solid rgba(29, 29, 29, 0.06);
}
.dual-process-section__detail-point:last-child {
  border-bottom: none;
}
.dual-process-section__detail-point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 9px;
  color: #199CA8;
}
.dual-process-section__detail-point-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.dual-process-section__detail-point-text {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(29, 29, 29, 0.75);
  padding-top: 5px;
}
.dual-process-section__detail-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding: 14px clamp(22px, 2.5vw, 28px);
  background: rgba(241, 241, 241, 0.65);
  border-top: 1px solid rgba(29, 29, 29, 0.06);
}
.dual-process-section__detail-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dual-process-section__detail-dot {
  display: block;
  height: 3px;
  width: 18px;
  border-radius: 2px;
  background: rgba(29, 29, 29, 0.12);
  transition: width 0.25s ease, background 0.25s ease;
}
.dual-process-section__detail-dot.is-past {
  background: rgba(25, 156, 168, 0.35);
}
.dual-process-section__detail-dot.is-current {
  width: 32px;
  background: #199CA8;
}
.dual-process-section__detail-next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(25, 156, 168, 0.28);
  background: rgba(25, 156, 168, 0.1);
  color: #199CA8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
@media (hover: hover) {
  .dual-process-section__detail-next:hover {
    background: rgba(25, 156, 168, 0.2);
    border-color: rgba(25, 156, 168, 0.45);
  }
}
.dual-process-section__detail-next:focus-visible {
  outline: 2px solid #F25220;
  outline-offset: 2px;
}
.dual-process-section__detail-next--cta {
  border-color: rgba(29, 29, 29, 0.12);
  background: #1D1D1D;
  color: #FFFFFF;
}
@media (hover: hover) {
  .dual-process-section__detail-next--cta:hover {
    background: rgb(49.4, 49.4, 49.4);
    border-color: transparent;
  }
}
@media screen and (max-width: 1280px) {
  .dual-process-section__panel.is-active {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .dual-process-section__seg {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  .dual-process-section__flow {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 12px 10px;
    text-align: center;
  }
  .dual-process-section__flow-tagline {
    display: none;
  }
  .dual-process-section__detail {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dual-process-section__panel.is-entering .dual-process-section__detail-card.is-active {
    animation: none;
  }
  .dual-process-section__step,
  .dual-process-section__seg-thumb {
    transition: none;
  }
}
@keyframes dual-process-detail-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.seasonal-offers-section__shell {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 40px);
}
.seasonal-offers-section__header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 24px) clamp(20px, 3vw, 40px);
}
.seasonal-offers-section__header-copy {
  flex: 1 1 auto;
  min-width: min(100%, 12rem);
  max-width: 720px;
}
.seasonal-offers-section__cta {
  flex: 0 0 auto;
}
.seasonal-offers-section__cta .btn {
  white-space: nowrap;
}
.seasonal-offers-section__offers {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.seasonal-offers-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
@media screen and (max-width: 1280px) {
  .seasonal-offers-section__grid {
    grid-template-columns: 1fr;
  }
}
.seasonal-offers-section__footnote {
  width: min(960px, 100%);
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 24px);
  text-align: center;
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.6;
  color: rgba(29, 29, 29, 0.76);
  text-wrap: pretty;
}
.seasonal-offers-section__footnote a {
  color: #199CA8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .seasonal-offers-section__footnote a:hover {
    color: rgb(19.7150259067, 123.021761658, 132.4849740933);
  }
}
.seasonal-offers-section__footnote a:focus-visible {
  outline: 2px solid #199CA8;
  outline-offset: 2px;
  border-radius: 2px;
}
.seasonal-offers-section__card {
  position: relative;
  display: block;
  min-height: clamp(300px, 36vw, 400px);
  border-radius: clamp(20px, 2.5vw, 28px);
  overflow: hidden;
  text-decoration: none;
  color: #FFFFFF;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
@media (hover: hover) {
  .seasonal-offers-section__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(29, 29, 29, 0.22);
  }
  .seasonal-offers-section__card:hover .seasonal-offers-section__card-bg {
    transform: scale(1.04);
  }
  .seasonal-offers-section__card:hover.seasonal-offers-section__card--solid .seasonal-offers-section__card-action {
    transform: scale(1.06);
    background: rgb(243.1237288136, 96.9542372881, 51.2762711864);
  }
  .seasonal-offers-section__card:hover.seasonal-offers-section__card--ghost .seasonal-offers-section__card-action {
    background: rgba(255, 255, 255, 0.16);
    border-color: #FFFFFF;
  }
}
.seasonal-offers-section__card:focus-visible {
  outline: 2px solid #F25220;
  outline-offset: 4px;
}
.seasonal-offers-section__card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.seasonal-offers-section__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(29, 29, 29, 0.08) 0%, rgba(29, 29, 29, 0.2) 42%, rgba(29, 29, 29, 0.82) 100%);
  pointer-events: none;
}
.seasonal-offers-section__card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 2.5vw, 32px);
  pointer-events: none;
}
.seasonal-offers-section__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: auto;
  padding-top: clamp(8px, 1vw, 16px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.seasonal-offers-section__card-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F25220;
  box-shadow: 0 0 0 3px rgba(242, 82, 32, 0.35);
}
.seasonal-offers-section__card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.seasonal-offers-section__card-title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  max-width: 15ch;
}
.seasonal-offers-section__card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(44px, 4.2vw, 52px);
  height: clamp(44px, 4.2vw, 52px);
  border-radius: 50%;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.seasonal-offers-section__card-action svg {
  display: block;
  width: 18px;
  height: 18px;
}
.seasonal-offers-section__card--solid .seasonal-offers-section__card-action {
  background: #F25220;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(242, 82, 32, 0.4);
}
.seasonal-offers-section__card--ghost .seasonal-offers-section__card-action {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #FFFFFF;
}
.seasonal-offers-section__card--solid .seasonal-offers-section__card-bg {
  object-position: 72% 28%;
}
.seasonal-offers-section__card--ghost .seasonal-offers-section__card-bg {
  object-position: center 35%;
}
@media screen and (max-width: 768px) {
  .seasonal-offers-section__card {
    min-height: 220px;
  }
  .seasonal-offers-section__card-title {
    font-size: clamp(18px, 5.5vw, 24px);
    max-width: 13ch;
  }
  .seasonal-offers-section__footnote {
    font-size: clamp(10px, 1.2vw, 12px);
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seasonal-offers-section__card {
    transition: none;
  }
}
@media (prefers-reduced-motion: reduce) and (hover: hover) {
  .seasonal-offers-section__card:hover {
    transform: none;
  }
  .seasonal-offers-section__card:hover .seasonal-offers-section__card-bg {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .seasonal-offers-section__card-bg,
  .seasonal-offers-section__card-action {
    transition: none;
  }
}
.home-pm-section__shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 3.5vw, 40px);
}
.home-pm-section__intro {
  width: 100%;
  max-width: min(840px, 100%);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home-pm-section__intro {
    text-align: left;
  }
}
.home-pm-section__intro .page-section-title .component-eyebrow {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .home-pm-section__intro .page-section-title .component-eyebrow {
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .home-pm-section__intro .page-section-title .page-section-title__heading {
    text-align: left;
  }
}
.home-pm-section__intro .page-section-title .page-section-title__heading .home-pm-section__title-accent {
  letter-spacing: 0.04em;
}
.home-pm-section__intro .page-section-title .page-section-title__sub {
  margin: 0 auto;
  max-width: 56ch;
}
@media screen and (max-width: 768px) {
  .home-pm-section__intro .page-section-title .page-section-title__sub {
    margin-left: 0;
    margin-right: auto;
  }
}
.home-pm-section__seg-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.home-pm-section__seg {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  width: min(100%, 920px);
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(29, 29, 29, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.home-pm-section__seg-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 0;
  width: calc(25% - 5px);
  height: calc(100% - 8px);
  border-radius: 10px;
  background: #1D1D1D;
  box-shadow: 0 6px 20px rgba(29, 29, 29, 0.22);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.home-pm-section__seg-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(25, 156, 168, 0.35) 0%, transparent 55%);
}
.home-pm-section__seg[data-active-index="1"] > .home-pm-section__seg-thumb {
  transform: translateX(calc(100% + 4px));
}
.home-pm-section__seg[data-active-index="2"] > .home-pm-section__seg-thumb {
  transform: translateX(calc(200% + 8px));
}
.home-pm-section__seg[data-active-index="3"] > .home-pm-section__seg-thumb {
  transform: translateX(calc(300% + 12px));
}
.home-pm-section__seg-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(29, 29, 29, 0.62);
  text-align: center;
  cursor: pointer;
  transition: color 0.25s ease;
}
.home-pm-section__seg-btn.is-active {
  color: #FFFFFF;
}
@media (hover: hover) {
  .home-pm-section__seg-btn:hover:not(.is-active) {
    color: #1D1D1D;
  }
}
.home-pm-section__seg-btn:focus-visible {
  outline: 2px solid #F25220;
  outline-offset: 2px;
}
.home-pm-section__seg-label {
  font-family: "Gilroy", sans-serif;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  line-height: 1.25;
}
.home-pm-section__stage {
  width: 100%;
  position: relative;
  min-height: clamp(380px, 42vw, 480px);
}
.home-pm-section__panel {
  display: none;
  width: 100%;
}
.home-pm-section__panel.is-active {
  display: block;
}
.home-pm-section__panel.is-entering .home-pm-section__copy {
  animation: home-pm-fade-up 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.home-pm-section__panel.is-entering .home-pm-section__visual {
  animation: home-pm-fade-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.home-pm-section__split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 3vw, 36px);
  border-radius: clamp(20px, 2.5vw, 28px);
  background: #FFFFFF;
  border: 1px solid rgba(29, 29, 29, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 24px 56px rgba(29, 29, 29, 0.08);
}
.home-pm-section__panel-title {
  margin: 0 0 12px;
  font-family: "Gilroy", sans-serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1D1D1D;
}
.home-pm-section__panel-lead {
  margin: 0 0 20px;
  max-width: 48ch;
  font-size: clamp(15px, 1.35vw, 16px);
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.68);
}
.home-pm-section__chips {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.home-pm-section__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(29, 29, 29, 0.78);
}
.home-pm-section__chip-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 82, 32, 0.12);
  color: #F25220;
}
.home-pm-section__checks {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-pm-section__checks li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(29, 29, 29, 0.65);
}
.home-pm-section__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F25220;
  transform: translateY(-50%);
}
.home-pm-section__cta.btn {
  margin-top: 4px;
}
.home-pm-section__visual {
  min-width: 0;
}
.home-pm-section__visual-frame {
  position: relative;
  border-radius: clamp(16px, 2vw, 20px);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, rgba(242, 82, 32, 0.12) 0%, rgba(25, 156, 168, 0.08) 100%);
  box-shadow: 0 16px 40px rgba(29, 29, 29, 0.12);
}
.home-pm-section__visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(29, 29, 29, 0.18) 100%);
  pointer-events: none;
}
.home-pm-section__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes home-pm-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-main--home-landing .home-pm-section {
  border-top: 1px solid rgba(29, 29, 29, 0.08);
}

@media (max-width: 900px) {
  .home-pm-section__split {
    grid-template-columns: 1fr;
  }
  .home-pm-section__visual {
    order: -1;
  }
  .home-pm-section__visual-frame {
    aspect-ratio: 16/10;
    max-height: 280px;
  }
}
@media screen and (max-width: 768px) {
  .home-pm-section__seg-wrap {
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-padding-inline: 20px;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .home-pm-section__seg-wrap::-webkit-scrollbar {
    display: none;
  }
  .home-pm-section__seg {
    display: inline-grid;
    grid-template-columns: repeat(4, minmax(148px, max-content));
    width: max-content;
    max-width: none;
  }
  .home-pm-section__seg-thumb {
    width: calc(25% - 5px);
    height: calc(100% - 8px);
  }
  .home-pm-section__seg-btn {
    min-height: 44px;
    padding: 10px 12px;
    scroll-snap-align: start;
  }
  .home-pm-section__seg-label {
    white-space: nowrap;
  }
}
@media (max-width: 600px) {
  .home-pm-section__chips {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-pm-section__panel.is-entering .home-pm-section__copy,
  .home-pm-section__panel.is-entering .home-pm-section__visual {
    animation: none;
  }
  .home-pm-section__seg-thumb {
    transition: none;
  }
}
.service-areas-section {
  margin-top: 60px;
  border-radius: 40px;
  padding-inline: 32px;
  padding-block: 0;
}
@media screen and (max-width: 768px) {
  .service-areas-section {
    margin-top: 0;
    padding-inline: 0;
  }
}
.service-areas-section .service-areas {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  .service-areas-section .service-areas {
    display: grid;
    grid-template-columns: 1fr min(420px, 42%);
    align-items: stretch;
    gap: 0;
  }
}
.service-areas-section .service-areas__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  min-width: 0;
}
@media screen and (min-width: 769px) {
  .service-areas-section .service-areas__content {
    grid-column: 2;
    grid-row: 1;
    z-index: 2;
    position: relative;
    align-self: start;
    width: 100%;
    margin: 100px 0;
    padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2vw, 24px);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 48px rgba(29, 29, 29, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    right: 40px;
  }
  .service-areas-section .service-areas__content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
    border-radius: 24px 0 0 24px;
    pointer-events: none;
    z-index: 0;
  }
  .service-areas-section .service-areas__content > * {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .service-areas-section .service-areas__content {
    order: -1;
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
.service-areas-section .service-areas__content .page-section-title {
  margin-bottom: clamp(20px, 4vw, 32px);
  gap: 10px;
}
.service-areas-section .service-areas__content .page-section-title .component-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 2px 8px;
}
.service-areas-section .service-areas__content .page-section-title .page-section-title__heading {
  font-size: clamp(26px, 4.1vw, 40px);
  line-height: 1.12;
}
.service-areas-section .service-areas__content .page-section-title .page-section-title__sub {
  font-size: 15px;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .service-areas-section .service-areas__content .page-section-title {
    gap: 8px;
  }
  .service-areas-section .service-areas__content .page-section-title .component-eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
  }
  .service-areas-section .service-areas__content .page-section-title .page-section-title__heading {
    font-size: 22px;
    line-height: 1.2;
  }
  .service-areas-section .service-areas__content .page-section-title .page-section-title__sub {
    font-size: 14px;
    line-height: 140%;
  }
}
.service-areas-section .service-areas__content .service-areas__list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 769px) {
  .service-areas-section .service-areas__content .service-areas__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    align-items: stretch;
  }
}
.service-areas-section .service-areas__content .service-areas__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1D1D1D;
  padding: 10px 14px;
  border: 1.5px solid rgba(29, 29, 29, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease;
}
.service-areas-section .service-areas__content .service-areas__item::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F25220;
  transition: transform 0.22s ease;
}
.service-areas-section .service-areas__content .service-areas__item span {
  color: rgba(29, 29, 29, 0.5);
  font-size: 13px;
  font-weight: 400;
  margin-left: 2px;
}
.service-areas-section .service-areas__content .service-areas__item:hover, .service-areas-section .service-areas__content .service-areas__item.is-active {
  border-color: #F25220;
  background: rgba(242, 82, 32, 0.05);
}
.service-areas-section .service-areas__content .service-areas__item:hover::before, .service-areas-section .service-areas__content .service-areas__item.is-active::before {
  transform: scale(1.35);
}
.service-areas-section .service-areas__content .service-areas__divider {
  border: none;
  border-top: 1px solid rgba(29, 29, 29, 0.1);
  margin: 0 0 20px 0;
}
.service-areas-section .service-areas__content .service-areas__stats {
  display: flex;
  gap: 32px;
}
.service-areas-section .service-areas__content .service-areas__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-areas-section .service-areas__content .service-areas__stat:nth-child(1) strong {
  color: #F25220;
}
.service-areas-section .service-areas__content .service-areas__stat:nth-child(2) strong {
  color: #199CA8;
}
.service-areas-section .service-areas__content .service-areas__stat strong {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}
.service-areas-section .service-areas__content .service-areas__stat span {
  font-size: 13px;
  color: rgba(29, 29, 29, 0.55);
}
.service-areas-section .service-areas__map {
  position: relative;
  width: 100%;
  border-radius: 24px;
  z-index: 1;
  min-height: 0;
}
@media screen and (min-width: 769px) {
  .service-areas-section .service-areas__map {
    grid-column: 1/-1;
    grid-row: 1;
    align-self: stretch;
  }
}
.service-areas-section .service-areas__map .map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: #e9edf3;
}
@media screen and (min-width: 769px) {
  .service-areas-section .service-areas__map .map-frame {
    position: absolute;
    inset: 0;
    min-height: 0;
  }
}
@media screen and (max-width: 768px) {
  .service-areas-section .service-areas__map .map-frame {
    height: auto;
    aspect-ratio: 4/3;
    min-height: 0;
    position: relative;
  }
}
.service-areas-section .service-areas__map .map-frame .google-map-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.service-areas-section .service-areas__map .map-frame .google-map-container .gm-style-cc,
.service-areas-section .service-areas__map .map-frame .google-map-container .gmnoprint,
.service-areas-section .service-areas__map .map-frame .google-map-container a[href*="maps.google.com"],
.service-areas-section .service-areas__map .map-frame .google-map-container a[href*="google.com/maps"] {
  display: none !important;
}
.service-areas-section .service-areas__map .map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: grayscale(0.15) contrast(1) saturate(0.9);
}
@keyframes pinPulse {
  0% {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 18px rgba(242, 82, 32, 0.18);
    transform: scale(1.15);
  }
  100% {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    transform: scale(1);
  }
}
.service-areas-section .service-areas__map .map-frame .pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.service-areas-section .service-areas__map .map-frame .pin:hover {
  transform: scale(1.1);
}
.service-areas-section .service-areas__map .map-frame .pin .pin-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(242, 82, 32, 0.15);
  border: 3px solid #F25220;
  box-shadow: 0 4px 20px rgba(242, 82, 32, 0.3), inset 0 0 20px rgba(242, 82, 32, 0.1);
  position: relative;
}
.service-areas-section .service-areas__map .map-frame .pin .pin-circle::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(242, 82, 32, 0.2);
  animation: circlePulse 2s ease-in-out infinite;
}
.service-areas-section .service-areas__map .map-frame .pin .pin-label {
  position: absolute;
  bottom: -25px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  color: #1D1D1D;
  background: #FFFFFF;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}
@keyframes circlePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
}
.service-areas-section .service-areas__map .map-frame .pin--brooklyn {
  left: 52%;
  top: 59%;
}
.service-areas-section .service-areas__map .map-frame .pin--queens {
  left: 61%;
  top: 52%;
}
.service-areas-section .service-areas__map .map-frame .pin--manhattan {
  left: 45%;
  top: 46%;
}
.service-areas-section .service-areas__map .map-frame .pin--staten {
  left: 35%;
  top: 67%;
}
.service-areas-section .service-areas__map .map-frame .pin--longisland {
  left: 78%;
  top: 54%;
}

.site-main--home-landing {
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .site-main--home-landing .page-section:not(.home-hero-section):not(.hero-section) .section-heading,
  .site-main--home-landing .page-section:not(.home-hero-section):not(.hero-section) .page-section-title__heading {
    text-align: left;
  }
  .site-main--home-landing .page-section:not(.home-hero-section):not(.hero-section) .component-eyebrow {
    margin-left: 0;
    margin-right: auto;
  }
  .site-main--home-landing .page-section:not(.home-hero-section):not(.hero-section) [class*=-section__subtitle],
  .site-main--home-landing .page-section:not(.home-hero-section):not(.hero-section) [class*=-section__lead],
  .site-main--home-landing .page-section:not(.home-hero-section):not(.hero-section) [class*=-section__description],
  .site-main--home-landing .page-section:not(.home-hero-section):not(.hero-section) .page-section-title__sub,
  .site-main--home-landing .page-section:not(.home-hero-section):not(.hero-section) .services-section__subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
  }
  .site-main--home-landing .testimonials-marquee-section .testimonials-header {
    margin-inline: 0;
    text-align: left;
  }
  .site-main--home-landing .testimonials-marquee-section .testimonials-header .component-eyebrow {
    margin-left: 0;
    margin-right: auto;
  }
  .site-main--home-landing .testimonials-marquee-section .testimonials-header .page-section-title__heading,
  .site-main--home-landing .testimonials-marquee-section .testimonials-header .page-section-title__sub {
    text-align: left;
  }
  .site-main--home-landing .home-pm-section__intro {
    text-align: left;
  }
  .site-main--home-landing .dual-process-section__header {
    margin-inline: 0;
    text-align: left;
  }
  .site-main--home-landing .dual-process-section__header .page-section-title__sub {
    margin-inline: 0;
    text-align: left;
  }
  .site-main--home-landing .discover-section-text {
    margin-inline: 0;
    text-align: left;
  }
  .site-main--home-landing .discover-section-text h2 {
    text-align: left;
  }
  .site-main--home-landing .trust-values-section__header,
  .site-main--home-landing .home-services-cards-section__intro,
  .site-main--home-landing .seasonal-offers-section__header-copy,
  .site-main--home-landing .home-values-alt-section__header,
  .site-main--home-landing .home-values-alt-section__header-copy {
    text-align: left;
  }
  .site-main--home-landing .home-services-cards-section__header,
  .site-main--home-landing .home-values-alt-section__header-row {
    justify-items: start;
    text-align: left;
  }
  .site-main--home-landing .home-services-cards-section__cta,
  .site-main--home-landing .seasonal-offers-section__cta,
  .site-main--home-landing .home-values-alt-section__cta {
    justify-self: start;
    align-self: start;
    margin-inline: 0;
    width: auto;
    max-width: 100%;
  }
  .site-main--home-landing .home-services-cards-section__cta .btn,
  .site-main--home-landing .seasonal-offers-section__cta .btn,
  .site-main--home-landing .home-values-alt-section__cta .btn {
    width: auto;
    max-width: 100%;
  }
  .site-main--home-landing .trust-values-section__tabs {
    justify-content: flex-start;
  }
}

/* ==========================================================
   Locations archive hero — grid + orange waves design
   ========================================================== */
.locations-archive-hero {
  position: relative;
  height: auto;
  max-height: none;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFFFFF;
  padding-top: 122px;
  padding-bottom: 56px;
  isolation: isolate;
}
@media screen and (min-width: 769px) {
  .locations-archive-hero {
    height: 100vh;
    height: 100dvh;
    max-height: 1200px;
  }
}
@media screen and (max-width: 768px) {
  .locations-archive-hero {
    align-items: flex-start;
    padding-top: 106px;
    padding-bottom: 60px;
  }
}
.locations-archive-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.72;
  background-image: linear-gradient(rgba(29, 29, 29, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(29, 29, 29, 0.11) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.locations-archive-hero__grid::before, .locations-archive-hero__grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(340px 250px at 18% 26%, rgba(242, 82, 32, 0.94) 0%, rgba(242, 82, 32, 0.38) 50%, transparent 82%), radial-gradient(380px 270px at 76% 18%, rgba(242, 82, 32, 0.9) 0%, rgba(242, 82, 32, 0.36) 52%, transparent 84%), radial-gradient(360px 260px at 68% 74%, rgba(242, 82, 32, 0.86) 0%, rgba(242, 82, 32, 0.34) 50%, transparent 83%), radial-gradient(320px 230px at 34% 68%, rgba(242, 82, 32, 0.82) 0%, rgba(242, 82, 32, 0.32) 48%, transparent 82%);
  opacity: 1;
}
.locations-archive-hero__grid::before {
  -webkit-mask-image: repeating-linear-gradient(0deg, #000 0 1px, transparent 1px 64px);
  mask-image: repeating-linear-gradient(0deg, #000 0 1px, transparent 1px 64px);
}
.locations-archive-hero__grid::after {
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 1px, transparent 1px 64px);
  mask-image: repeating-linear-gradient(90deg, #000 0 1px, transparent 1px 64px);
}
@supports (mask-image: radial-gradient(circle at center, #000, transparent)) {
  .locations-archive-hero__grid {
    mask-image: radial-gradient(86% 86% at 50% 45%, #000 0%, transparent 82%);
    -webkit-mask-image: radial-gradient(86% 86% at 50% 45%, #000 0%, transparent 82%);
  }
}
.locations-archive-hero__wave {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.85;
}
.locations-archive-hero__wave--h {
  height: 2px;
  width: 300px;
  left: -320px;
  background: linear-gradient(90deg, transparent, #F25220, transparent);
  animation: locationsHeroWaveH linear infinite;
}
.locations-archive-hero__wave--v {
  width: 2px;
  height: 300px;
  top: -320px;
  background: linear-gradient(180deg, transparent, #F25220, transparent);
  animation: locationsHeroWaveV linear infinite;
  opacity: 0.7;
}
.locations-archive-hero__wave--h:nth-of-type(2) {
  top: 192px;
  animation-duration: 6.5s;
}
.locations-archive-hero__wave--h:nth-of-type(3) {
  top: 384px;
  animation-duration: 9s;
  animation-delay: 1.4s;
}
.locations-archive-hero__wave--h:nth-of-type(4) {
  top: 576px;
  animation-duration: 7.5s;
  animation-delay: 0.6s;
}
.locations-archive-hero__wave--v:nth-of-type(5) {
  left: 18%;
  animation-duration: 8s;
  animation-delay: 0.3s;
}
.locations-archive-hero__wave--v:nth-of-type(6) {
  left: 62%;
  animation-duration: 6s;
  animation-delay: 1.1s;
}
.locations-archive-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 3.6vw, 56px);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .locations-archive-hero__inner {
    grid-template-columns: 1fr;
  }
}
.locations-archive-hero__crumbs {
  margin-bottom: 22px;
}
.locations-archive-hero__crumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.locations-archive-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(29, 29, 29, 0.62);
}
.locations-archive-hero__crumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.locations-archive-hero__crumb a:hover {
  color: #F25220;
}
.locations-archive-hero__crumb.is-active span {
  color: #F25220;
}
.locations-archive-hero__crumb-sep {
  opacity: 0.6;
}
.locations-archive-hero__title {
  margin: 0;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.99;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1D1D1D;
}
.locations-archive-hero__title em {
  color: #F25220;
  font-style: normal;
}
.locations-archive-hero__title-line {
  display: block;
}
.locations-archive-hero__lede {
  margin-top: 24px;
  max-width: 48ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.62);
}
.locations-archive-hero__cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.locations-archive-hero__tags {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.locations-archive-hero__tag {
  font-size: 13px;
  color: rgba(29, 29, 29, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.locations-archive-hero__tag b {
  color: #1D1D1D;
  font-weight: 700;
}
.locations-archive-hero__tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F25220;
}
.locations-archive-hero__visual {
  position: relative;
  height: clamp(400px, 45vw, 580px);
}
@media screen and (max-width: 768px) {
  .locations-archive-hero__visual {
    height: 330px;
    margin-top: 10px;
  }
}
.locations-archive-hero__img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f1f1;
  box-shadow: 0 30px 70px -28px rgba(29, 29, 29, 0.35);
}
.locations-archive-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.locations-archive-hero__img--main {
  inset: 0 0 48px 42px;
  animation: locationsHeroFloaty 6s ease-in-out infinite;
}
.locations-archive-hero__img--sub {
  width: 210px;
  height: 240px;
  left: 0;
  bottom: 0;
  border: 6px solid #FFFFFF;
  animation: locationsHeroFloaty 6s ease-in-out infinite 0.8s;
}
.locations-archive-hero__badge {
  position: absolute;
  top: 24px;
  left: -24px;
  z-index: 3;
  background: #FFFFFF;
  border: 1px solid rgba(29, 29, 29, 0.1);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 20px 50px -20px rgba(29, 29, 29, 0.3);
  animation: locationsHeroFloaty 5s ease-in-out infinite 0.4s;
}
.locations-archive-hero__badge b {
  display: block;
  font-size: 22px;
  color: #1D1D1D;
  line-height: 1;
}
.locations-archive-hero__stars {
  margin-top: 6px;
  color: #F25220;
  font-size: 12px;
  letter-spacing: 2px;
}
.locations-archive-hero__badge-sources {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.locations-archive-hero__badge-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.locations-archive-hero__badge-source svg {
  width: auto;
  height: 14px;
}
.locations-archive-hero__badge-source small {
  display: block;
  color: rgba(29, 29, 29, 0.62);
  font-size: 11px;
  line-height: 1;
  margin: 0;
}

@keyframes locationsHeroWaveH {
  from {
    left: -320px;
  }
  to {
    left: 110%;
  }
}
@keyframes locationsHeroWaveV {
  from {
    top: -320px;
  }
  to {
    top: 110%;
  }
}
@keyframes locationsHeroFloaty {
  50% {
    transform: translateY(-12px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .locations-archive-hero__wave,
  .locations-archive-hero__img--main,
  .locations-archive-hero__img--sub,
  .locations-archive-hero__badge {
    animation: none !important;
  }
}
.locations-slider-section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .locations-slider-section {
    padding: 60px 0;
  }
}
.locations-slider-section .locations-slider-wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  .locations-slider-section .locations-slider-wrapper {
    padding: 0;
  }
}

.locations-organized-section {
  padding-top: 80px;
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .locations-organized-section {
    padding-top: 60px;
  }
}

.locations-organized-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .locations-organized-wrapper {
    gap: 32px;
  }
}

.locations-organized-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.locations-organized-header .page-section-title {
  margin-bottom: 0;
}

.locations-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px;
  background: #f1f1f1;
  border-radius: 16px;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .locations-tabs {
    width: 100%;
    gap: 8px;
    padding: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: start;
  }
  .locations-tabs::-webkit-scrollbar {
    display: none;
  }
}
.locations-tabs .location-tab {
  padding: 12px 28px;
  border: none;
  background: transparent;
  color: #1D1D1D;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .locations-tabs .location-tab {
    padding: 10px 20px;
    font-size: 14px;
    flex: 0 0 auto;
  }
}
.locations-tabs .location-tab:hover {
  background: rgba(242, 82, 32, 0.1);
  color: #F25220;
}
.locations-tabs .location-tab.active {
  background: #FFFFFF;
  color: #F25220;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.locations-tabs .location-tab.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #F25220;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .locations-tabs .location-tab.active::after {
    display: none;
  }
}

.locations-content {
  position: relative;
}

.locations-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.locations-grid.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}
.locations-grid .no-locations {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #757575;
  font-size: 18px;
}

.location-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  text-decoration: none;
  color: #1D1D1D;
  transition: all 0.3s ease;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .location-item {
    padding: 16px 18px;
    border-radius: 12px;
  }
}
.location-item:hover {
  border-color: #F25220;
  background: rgba(242, 82, 32, 0.02);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 82, 32, 0.15);
}
.location-item:hover .location-item-arrow {
  transform: translateX(4px);
  color: #F25220;
}
.location-item:hover .location-item-name {
  color: #F25220;
}
.location-item-name {
  font-size: 16px;
  font-weight: 500;
  color: #1D1D1D;
  transition: color 0.3s ease;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .location-item-name {
    font-size: 14px;
  }
}
.location-item-arrow {
  width: 20px;
  height: 20px;
  color: #757575;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .location-item-arrow {
    width: 18px;
    height: 18px;
  }
}

.location-card-link-wrapper {
  text-decoration: none;
}

.location-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFFFFF;
}
.location-card:hover {
  transform: translateY(-8px);
}
.location-card:hover .location-card-link {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .location-card {
    height: 390px;
    border-radius: 32px;
  }
}
.location-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.location-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.location-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 18px;
  margin: 0 24px 12px 24px;
}
.location-card-content h3 {
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .location-card-content h3 {
    font-size: 18px;
  }
}
.location-card-content p {
  font-size: 18px;
  line-height: 140%;
  color: #FFFFFF;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .location-card-content p {
    font-size: 14px;
    line-height: 140%;
  }
}
.location-card-link {
  width: 32px;
  height: 32px;
  background: #F25220;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(242, 82, 32, 0.4);
  text-decoration: none;
}
.location-card-link svg {
  color: #FFFFFF;
  width: 16px;
  height: 16px;
}
.location-card-link:hover {
  background: rgb(220.3542372881, 62.2525423729, 12.8457627119);
  box-shadow: 0 12px 32px rgba(242, 82, 32, 0.6);
}
@media screen and (max-width: 768px) {
  .location-card-link {
    width: 56px;
    height: 56px;
    top: 36px;
    right: 32px;
  }
  .location-card-link svg {
    width: 24px;
    height: 24px;
  }
}

.locations-disclaimer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  text-align: center;
  margin-top: 32px;
  border-top: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .locations-disclaimer {
    padding: 32px 20px;
    margin-top: 24px;
    gap: 16px;
  }
}
.locations-disclaimer-text {
  font-size: 18px;
  line-height: 140%;
  color: #1D1D1D;
  margin: 0;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .locations-disclaimer-text {
    font-size: 16px;
    line-height: 140%;
  }
}

/* ==========================================================
   Areas archive — overview section
   ========================================================== */
.areas-overview-section {
  padding: 80px 0 96px;
}

.areas-credentials-cta .credentials-cta {
  padding-bottom: 80px;
}

.areas-overview-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.areas-overview-head .component-eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.areas-overview-head--left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.areas-overview-head--left .component-eyebrow {
  margin-left: 0;
  margin-right: auto;
}
.areas-overview-head--left .areas-overview-head__desc {
  margin-left: 0;
  margin-right: auto;
}
.areas-overview-head__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: #1D1D1D;
}
.areas-overview-head__title em {
  color: #F25220;
  font-style: normal;
}
.areas-overview-head__desc {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.62);
  margin: 0 auto;
  max-width: 56ch;
}

.area-zone-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .area-zone-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .area-zone-cards-grid {
    grid-template-columns: 1fr;
  }
}

.area-zone-cards-grid .area-zone-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(29, 29, 29, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  box-shadow: 0 1px 2px rgba(29, 29, 29, 0.04), 0 14px 30px -22px rgba(29, 29, 29, 0.2);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  --mx: 50%;
  --my: 0%;
  transition: opacity var(--animate-duration) ease-out var(--animate-delay), transform calc(var(--animate-duration) + 0.1s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--animate-delay), translate 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.4s ease, box-shadow 0.45s ease, background-color 0.4s ease;
}
.area-zone-cards-grid .area-zone-card > *:not(.area-zone-card__glow) {
  position: relative;
  z-index: 1;
}
.area-zone-cards-grid .area-zone-card__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx) var(--my), rgba(242, 82, 32, 0.22), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
@media (hover: hover) {
  .area-zone-cards-grid .area-zone-card:hover {
    background: linear-gradient(135deg, rgba(25, 156, 168, 0.3) 0%, transparent 52%), #1D1D1D;
    border-color: #1D1D1D;
    translate: 0 -6px;
    box-shadow: 0 30px 60px -24px rgba(29, 29, 29, 0.55), 0 8px 20px -12px rgba(29, 29, 29, 0.35);
  }
  .area-zone-cards-grid .area-zone-card:hover .area-zone-card__glow {
    opacity: 1;
  }
  .area-zone-cards-grid .area-zone-card:hover .area-zone-card__title {
    color: #FFFFFF;
  }
  .area-zone-cards-grid .area-zone-card:hover .area-zone-card__desc {
    color: rgba(255, 255, 255, 0.75);
  }
  .area-zone-cards-grid .area-zone-card:hover .area-zone-card__link {
    gap: 10px;
    color: #FFFFFF;
  }
  .area-zone-cards-grid .area-zone-card:hover .area-zone-card__img img {
    transform: scale(1.05);
  }
  .area-zone-cards-grid .area-zone-card:hover .area-zone-card__badge--next-day {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
  }
}
@media (prefers-reduced-motion: reduce) {
  .area-zone-cards-grid .area-zone-card:hover {
    translate: none;
  }
}
.area-zone-cards-grid .area-zone-card__img {
  margin: -28px -28px 0;
  height: 180px;
  flex-shrink: 0;
  background: #f1f1f1;
}
.area-zone-cards-grid .area-zone-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.area-zone-cards-grid .area-zone-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.area-zone-cards-grid .area-zone-card__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #F25220;
  padding-top: 6px;
}
.area-zone-cards-grid .area-zone-card__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}
.area-zone-cards-grid .area-zone-card__badge--same-day {
  background: #1D1D1D;
  color: #FFFFFF;
}
.area-zone-cards-grid .area-zone-card__badge--next-day {
  background: #f1f1f1;
  color: #1D1D1D;
  border: 1px solid rgba(29, 29, 29, 0.12);
}
.area-zone-cards-grid .area-zone-card__title {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: #1D1D1D;
  transition: color 0.28s ease;
}
.area-zone-cards-grid .area-zone-card__desc {
  font-size: 14px;
  line-height: 1.62;
  color: rgba(29, 29, 29, 0.62);
  margin: 0;
  flex: 1;
  transition: color 0.28s ease;
}
.area-zone-cards-grid .area-zone-card__link {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #F25220;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.28s ease;
}
.area-zone-cards-grid .area-zone-card__link svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* ==========================================================
   Areas archive — per-borough slider
   ========================================================== */
.areas-borough-slider-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 102px;
}
.areas-borough-slider-section #areas-borough-slider {
  width: 100%;
}

.areas-borough-slider-bar {
  padding: 14px 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(29, 29, 29, 0.08);
}
.areas-borough-slider-bar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.areas-borough-slider-bar__progress {
  flex: 1;
  height: 3px;
  background: rgba(29, 29, 29, 0.1);
  border-radius: 99px;
  overflow: hidden;
}
.areas-borough-slider-bar__fill {
  width: 100%;
  height: 100%;
  background: #F25220;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.areas-borough-slider-bar__nav {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}
.areas-borough-slider-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #F25220;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) {
  .areas-borough-slider-bar__btn:hover {
    background: rgb(220.3542372881, 62.2525423729, 12.8457627119);
    transform: scale(1.08);
  }
}

/* ==========================================================
   Areas archive — per-borough sections
   ========================================================== */
.areas-borough-section {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background: #FFFFFF;
}
.areas-borough-section--alt {
  background: linear-gradient(180deg, #F9FAFB 0%, #F3F6F8 100%);
}
.areas-borough-section::after {
  content: "";
  position: absolute;
  top: -140px;
  left: -90px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 82, 32, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.areas-borough-section .container {
  position: relative;
  z-index: 1;
}

.areas-borough-section__bg-num {
  position: absolute;
  top: -0.42em;
  right: -0.04em;
  font-size: clamp(140px, 20vw, 280px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, rgba(242, 82, 32, 0.12) 0%, rgba(29, 29, 29, 0.03) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgba(29, 29, 29, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.areas-borough-head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.areas-borough-head__left {
  flex: 1;
  min-width: 240px;
}

.areas-borough-head__title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 8px 0 0;
  color: #1D1D1D;
}
.areas-borough-head__title em {
  font-style: normal;
  color: #F25220;
}

.areas-borough-head__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1D1D1D;
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}
.areas-borough-head__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
@media (hover: hover) {
  .areas-borough-head__link:hover {
    color: #F25220;
    gap: 12px;
  }
  .areas-borough-head__link:hover svg {
    transform: translate(2px, -2px);
  }
}

.areas-borough-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.areas-borough-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.areas-borough-badge--same-day {
  background: #1D1D1D;
  color: #fff;
}
.areas-borough-badge--same-day::before {
  background: #F25220;
  animation: areaBadgePulse 2s ease-out infinite;
}
.areas-borough-badge--next-day {
  background: #f1f1f1;
  color: #1D1D1D;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.areas-borough-badge--next-day::before {
  background: #757575;
}

@keyframes areaBadgePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 82, 32, 0.55);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(242, 82, 32, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 82, 32, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .areas-borough-badge--same-day::before {
    animation: none;
  }
}
.areas-borough-lede {
  position: relative;
  z-index: 1;
  max-width: 68ch;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.68;
  color: rgba(29, 29, 29, 0.65);
  margin: 0 0 40px;
}

.areas-borough-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
@media screen and (max-width: 1280px) {
  .areas-borough-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.areas-borough-block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #757575;
  margin-bottom: 16px;
}

.areas-neighborhood-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.areas-neighborhood-list li {
  font-size: 13px;
  background: #FFFFFF;
  border: 1px solid rgba(29, 29, 29, 0.1);
  border-radius: 999px;
  color: #1D1D1D;
  box-shadow: 0 1px 2px rgba(29, 29, 29, 0.04);
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.24s ease;
}
.areas-neighborhood-list li a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
}
.areas-neighborhood-list li .areas-neighborhood-arrow {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: #F25220;
  transition: transform 0.24s ease, color 0.24s ease;
}
@media (hover: hover) {
  .areas-neighborhood-list li:hover {
    background: #1D1D1D;
    border-color: #1D1D1D;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px -12px rgba(29, 29, 29, 0.45);
  }
  .areas-neighborhood-list li:hover .areas-neighborhood-arrow {
    color: #fff;
    transform: translate(2px, -2px);
  }
}

.areas-project-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.areas-project-list li {
  font-size: 14px;
  line-height: 1.58;
  color: #1D1D1D;
  padding-left: 30px;
  position: relative;
}
.areas-project-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background: rgba(242, 82, 32, 0.12);
}
.areas-project-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #F25220;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.areas-borough-testimonial {
  position: relative;
  z-index: 1;
  padding: 32px 38px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFCFD 100%);
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid rgba(29, 29, 29, 0.07);
  border-radius: 16px;
  box-shadow: 0 20px 44px -30px rgba(29, 29, 29, 0.32);
  overflow: hidden;
}
.areas-borough-testimonial::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #F25220, rgb(245.3711864407, 126.8627118644, 89.8288135593));
}
.areas-borough-testimonial::after {
  content: "”";
  position: absolute;
  right: 26px;
  top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 150px;
  line-height: 1;
  color: rgba(242, 82, 32, 0.08);
  pointer-events: none;
  z-index: 0;
}
.areas-borough-testimonial .areas-borough-testimonial__quote {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 240px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  font-weight: 500;
  color: #1D1D1D;
  margin: 0;
}
.areas-borough-testimonial .areas-borough-testimonial__meta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  font-size: 11px;
  color: #757575;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: right;
  min-width: 170px;
  line-height: 1.7;
}
.areas-borough-testimonial .areas-borough-testimonial__meta::before {
  content: "★★★★★";
  display: block;
  margin-bottom: 8px;
  color: #F25220;
  font-size: 14px;
  letter-spacing: 2px;
}
.areas-borough-testimonial .areas-borough-testimonial__meta strong {
  display: block;
  color: #1D1D1D;
  font-size: 15px;
  margin-bottom: 3px;
  text-transform: none;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .areas-borough-testimonial .areas-borough-testimonial__meta {
    text-align: left;
  }
  .areas-borough-testimonial .areas-borough-testimonial__meta::before {
    text-align: left;
  }
}

/* ==========================================================
   Areas archive — outside zones CTA (credentials-cta system)
   ========================================================== */
.areas-outside-cta {
  padding: 14px 0 26px;
}
.areas-outside-cta__inner::before {
  right: auto;
  left: -72px;
  top: -96px;
}
.areas-outside-cta__inner::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 68%);
  pointer-events: none;
}
.areas-outside-cta__title {
  max-width: 20ch;
  margin-top: 14px;
}
.areas-outside-cta__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .areas-outside-cta__highlights {
    grid-template-columns: 1fr;
  }
}
.areas-outside-cta__highlight {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.areas-outside-cta__highlight--positive {
  border-color: rgba(242, 82, 32, 0.35);
  background: rgba(242, 82, 32, 0.1);
}
.areas-outside-cta__highlight-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F25220;
  margin-bottom: 6px;
}
.areas-outside-cta__highlight--neutral .areas-outside-cta__highlight-label {
  color: rgba(255, 255, 255, 0.55);
}
.areas-outside-cta__highlight-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}
.areas-outside-cta__lead {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
}
.areas-outside-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}
.areas-outside-cta__actions .btn,
.areas-outside-cta__actions a.btn {
  margin-top: 0;
}
.areas-outside-cta__actions a.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
}
@media (hover: hover) {
  .areas-outside-cta__actions a.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
  }
}

/* ==========================================================
   Areas archive — building types (dark bg)
   ========================================================== */
.areas-types-section {
  padding: 96px 0;
  background: #1D1D1D;
  color: #fff;
}

.areas-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  .areas-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .areas-types-grid {
    grid-template-columns: 1fr;
  }
}

.areas-type-item {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.areas-type-item .areas-type-item__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.2;
}
.areas-type-item .areas-type-item__desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.cinematic-hero {
  position: relative;
  height: auto;
  max-height: none;
  overflow: hidden;
  background: #0c0c0e;
  color: #FFFFFF;
  padding: 0;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .cinematic-hero {
    height: 100vh;
    height: 100dvh;
    max-height: min(1000px, 100vh - var(--announcement-bar-height, 0px));
    max-height: min(1000px, 100dvh - var(--announcement-bar-height, 0px));
  }
}
@media screen and (max-width: 768px) {
  .cinematic-hero {
    height: auto;
    max-height: none;
  }
}
.cinematic-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cinematic-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.cinematic-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 14, 0.96) 30%, rgba(12, 12, 14, 0.6) 62%, rgba(12, 12, 14, 0.35)), radial-gradient(60% 80% at 90% 10%, rgba(242, 82, 32, 0.3), transparent 60%);
}
.cinematic-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  background-image: linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(90% 80% at 30% 40%, #000, transparent 88%);
  pointer-events: none;
}
.cinematic-hero__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F25220, transparent);
  z-index: 1;
  top: 0;
  opacity: 0.5;
  animation: cinematicHeroScan 7s linear infinite;
  pointer-events: none;
}
.cinematic-hero__inner {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 0;
  padding-top: 82px;
  padding-bottom: 32px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cinematic-hero__inner {
    align-items: flex-start;
    padding-top: 106px;
    padding-bottom: 60px;
  }
}
.cinematic-hero__inner > .container {
  width: 100%;
  height: auto;
}
.cinematic-hero__ticker {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  overflow: hidden;
}
.cinematic-hero__ticker-track {
  display: flex;
  gap: 42px;
  padding: 20px 0;
  width: max-content;
  animation: cinematicHeroTick 26s linear infinite;
}
.cinematic-hero__ticker:hover .cinematic-hero__ticker-track {
  animation-play-state: paused;
}
.cinematic-hero__ticker-item {
  font-size: 14px;
  color: #e6e6ec;
  display: inline-flex;
  align-items: center;
  gap: 42px;
  white-space: nowrap;
}
.cinematic-hero__ticker-item::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F25220;
  flex-shrink: 0;
}
.cinematic-hero__cta {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cinematic-hero__cta .btn {
  padding: 16px 28px;
  font-weight: 600;
  font-size: 15.5px;
  transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cinematic-hero__cta .btn-primary {
  background: #F25220;
  border-color: transparent;
}
.cinematic-hero__cta .btn-primary:hover {
  background: #ff6336;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(242, 82, 32, 0.6);
  filter: none;
}
.cinematic-hero__cta .btn--on-dark-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}
.cinematic-hero__cta .btn--on-dark-outline:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  filter: none;
  box-shadow: none;
}
@media (prefers-reduced-motion: reduce) {
  .cinematic-hero__scan, .cinematic-hero__ticker-track {
    animation: none;
  }
}

@keyframes cinematicHeroScan {
  from {
    top: -2%;
  }
  to {
    top: 102%;
  }
}
@keyframes cinematicHeroTick {
  to {
    transform: translateX(-50%);
  }
}
.location-cinematic-hero__crumbs {
  margin-bottom: 22px;
}
.location-cinematic-hero__crumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.location-cinematic-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.location-cinematic-hero__crumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.location-cinematic-hero__crumb a:hover {
  color: #F25220;
}
.location-cinematic-hero__crumb.is-active span {
  color: #F25220;
}
.location-cinematic-hero__crumb-sep {
  opacity: 0.6;
}
.location-cinematic-hero__title {
  font-family: "Gilroy", sans-serif;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 28ch;
  margin: 0;
}
.location-cinematic-hero__title em {
  font-style: normal;
  color: #F25220;
}
.location-cinematic-hero__lede {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: #d4d4dc;
  max-width: 52ch;
}
.location-cinematic-hero__stats {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 30px 56px;
  align-items: start;
}
.location-cinematic-hero__stat {
  position: relative;
  padding-left: 18px;
}
.location-cinematic-hero__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: #F25220;
}
.location-cinematic-hero__stat b {
  display: block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.location-cinematic-hero__stat small {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  color: #bcbcc4;
  max-width: 18ch;
  line-height: 1.4;
}
@media screen and (max-width: 760px) {
  .location-cinematic-hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 26px 30px;
  }
  .location-cinematic-hero__stat b {
    font-size: 24px;
  }
}

.location-brands {
  padding: 80px 0;
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .location-brands {
    padding: 60px 0;
  }
}

.location-brands__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
}
.location-brands__header .location-brands__title {
  font-size: 45px;
  font-weight: 700;
  color: #1D1D1D;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .location-brands__header .location-brands__title {
    font-size: 24px;
  }
}
.location-brands__header .location-brands__desc {
  font-size: 16px;
  line-height: 140%;
  color: #1D1D1D;
}
@media screen and (max-width: 768px) {
  .location-brands__header .location-brands__desc {
    font-size: 14px;
    line-height: 140%;
  }
}

.location-brands__marquee {
  overflow: hidden;
  position: relative;
}
.location-brands__marquee::before, .location-brands__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  pointer-events: none;
  z-index: 2;
}
.location-brands__marquee::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
}
.location-brands__marquee::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
}
@media screen and (max-width: 768px) {
  .location-brands__marquee::before, .location-brands__marquee::after {
    width: 80px;
  }
}

.brands-marquee-swiper {
  overflow: visible;
}
.brands-marquee-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important;
}
.brands-marquee-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 64px;
}
@media screen and (max-width: 768px) {
  .brands-marquee-swiper .swiper-slide {
    margin-right: 36px;
  }
}
.brands-marquee-swiper .location-brands__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.brands-marquee-swiper .location-brands__link:hover {
  opacity: 1;
}
.brands-marquee-swiper img {
  height: 100%;
  width: 100%;
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.03));
}
@media screen and (max-width: 768px) {
  .brands-marquee-swiper img {
    max-height: 40px;
    max-width: 100px;
  }
}

.child-locations-section {
  background: #FFFFFF;
}

.discover-services-section {
  padding: 80px 0;
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .discover-services-section {
    padding: 60px 0;
  }
}

.discover-services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .discover-services-wrapper {
    gap: 32px;
  }
}

.discover-services-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.discover-services-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1D1D1D;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .discover-services-header h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
}
.discover-services-header p {
  font-size: 18px;
  line-height: 140%;
  color: #757575;
}
@media screen and (max-width: 768px) {
  .discover-services-header p {
    font-size: 14px;
    line-height: 140%;
  }
}

.discover-services-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .discover-services-filters {
    gap: 8px;
  }
}

.discover-services-filter {
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
  color: #1D1D1D;
  padding: 10px 20px;
  border-radius: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .discover-services-filter {
    padding: 10px 24px;
    font-size: 14px;
  }
}
.discover-services-filter:hover {
  border-color: #F25220;
  background: rgba(242, 82, 32, 0.05);
}
.discover-services-filter.active {
  background: #F25220;
  border-color: #F25220;
  color: #FFFFFF;
}

.discover-services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.discover-services-list[data-filter-active=residential] .discover-service-item[data-service-type=commercial] {
  display: none;
}

.discover-services-list[data-filter-active=commercial] .discover-service-item[data-service-type=residential] {
  display: none;
}

.discover-service-item {
  display: grid;
  grid-template-columns: 200px 1.2fr 0.8fr;
  align-items: center;
  gap: 24px;
  padding: 32px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .discover-service-item {
    gap: 16px;
    padding: 20px 0;
    flex-wrap: wrap;
    grid-template-columns: 20px 1fr;
  }
}
.discover-service-item:last-child {
  border-bottom: none;
}
.discover-service-item:hover {
  background: #F25220;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .discover-service-item:hover {
    margin: 0;
    padding: 20px;
  }
}
.discover-service-item:hover .discover-service-number,
.discover-service-item:hover .discover-service-title a,
.discover-service-item:hover .discover-service-description {
  color: #FFFFFF;
}
.discover-service-item:hover .discover-service-arrow {
  background: rgba(255, 255, 255, 0.2);
}
.discover-service-item:hover .discover-service-arrow svg {
  color: #FFFFFF;
}

.discover-service-number {
  font-size: 18px;
  font-weight: 400;
  color: #757575;
  min-width: 40px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .discover-service-number {
    font-size: 16px;
    min-width: 32px;
  }
}

.discover-service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .discover-service-content {
    gap: 6px;
  }
}

.discover-service-title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  color: #1D1D1D;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .discover-service-title {
    font-size: 20px;
  }
}
.discover-service-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}
.discover-service-title a:hover {
  color: #F25220;
}

.discover-service-description {
  font-size: 16px;
  line-height: 140%;
  color: #757575;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .discover-service-description {
    font-size: 14px;
    line-height: 140%;
    grid-column: 1/-1;
  }
}

.discover-service-arrow {
  width: 40px;
  height: 40px;
  background: #F25220;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .discover-service-arrow {
    width: 36px;
    height: 36px;
  }
}
.discover-service-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.discover-service-arrow svg {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .discover-service-arrow svg {
    width: 18px;
    height: 18px;
  }
}
.discover-service-arrow:hover {
  background: rgb(234.811440678, 66.3368644068, 13.688559322);
  transform: scale(1.1);
}
.discover-service-arrow:hover svg {
  transform: translateX(2px);
}

.discover-service-item:hover .discover-service-arrow {
  background: #FFFFFF;
}
.discover-service-item:hover .discover-service-arrow svg {
  transform: rotate(0deg);
  color: #F25220;
}

/* ==========================================================
   Location single — brands strip (variant of brands-marquee)
   ========================================================== */
.loc-brands-strip {
  padding: 80px 0;
  background: #FFFFFF;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .loc-brands-strip {
    padding: 56px 0;
  }
}

.loc-brands-strip__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.loc-brands-strip__header .loc-brands-strip__title {
  margin: 0 0 12px;
}
.loc-brands-strip__header .loc-brands-strip__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #757575;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .loc-brands-strip__header .loc-brands-strip__desc {
    font-size: 14px;
  }
}

.loc-brands-strip__marquee {
  position: relative;
  overflow: hidden;
}
.loc-brands-strip__marquee::before, .loc-brands-strip__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.loc-brands-strip__marquee::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0.85) 45%, transparent 100%);
}
.loc-brands-strip__marquee::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF 0%, rgba(255, 255, 255, 0.85) 45%, transparent 100%);
}
@media screen and (max-width: 768px) {
  .loc-brands-strip__marquee::before, .loc-brands-strip__marquee::after {
    width: 70px;
  }
}

.loc-brands-strip__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 100px;
  padding: 22px 28px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  border: 1px solid rgba(29, 29, 29, 0.08);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(29, 29, 29, 0.04), 0 12px 26px -20px rgba(29, 29, 29, 0.18);
  text-decoration: none;
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.loc-brands-strip__tile img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
@media (hover: hover) {
  .loc-brands-strip__tile:hover {
    transform: translateY(-4px);
    border-color: rgba(29, 29, 29, 0.14);
    box-shadow: 0 22px 38px -22px rgba(29, 29, 29, 0.3);
  }
  .loc-brands-strip__tile:hover img {
    filter: grayscale(0);
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .loc-brands-strip__tile {
    width: 150px;
    height: 86px;
    padding: 18px 22px;
  }
}

/* ==========================================================
   Location single — advantages (variant of why-choose-section)
   ========================================================== */
.loc-adv-section {
  padding: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .loc-adv-section {
    padding: 56px 0;
  }
}

.loc-adv-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.loc-adv-head__title {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .loc-adv-head {
    margin-bottom: 32px;
  }
}

.loc-adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media screen and (max-width: 1280px) {
  .loc-adv-grid {
    grid-template-columns: 1fr;
  }
}

.loc-adv-grid .loc-adv-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  border: 1px solid rgba(29, 29, 29, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(29, 29, 29, 0.04), 0 16px 34px -24px rgba(29, 29, 29, 0.22);
  transition: opacity var(--animate-duration) ease-out var(--animate-delay), transform calc(var(--animate-duration) + 0.1s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--animate-delay), translate 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
@media (hover: hover) {
  .loc-adv-grid .loc-adv-card:hover {
    translate: 0 -6px;
    box-shadow: 0 30px 56px -28px rgba(29, 29, 29, 0.4);
  }
  .loc-adv-grid .loc-adv-card:hover .loc-adv-card__media img {
    transform: scale(1.05);
  }
}
@media (prefers-reduced-motion: reduce) {
  .loc-adv-grid .loc-adv-card:hover {
    translate: none;
  }
}
.loc-adv-grid .loc-adv-card__media {
  position: relative;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
}
.loc-adv-grid .loc-adv-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
@media screen and (max-width: 768px) {
  .loc-adv-grid .loc-adv-card__media {
    height: 240px;
  }
}
.loc-adv-grid .loc-adv-card__media-cta {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
}
.loc-adv-grid .loc-adv-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 30px 32px;
}
.loc-adv-grid .loc-adv-card__stat {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #F25220;
}
.loc-adv-grid .loc-adv-card__stat--light {
  color: #FFFFFF;
}
.loc-adv-grid .loc-adv-card__stat-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1D1D1D;
}
.loc-adv-grid .loc-adv-card__stat-title--light {
  color: #FFFFFF;
}
.loc-adv-grid .loc-adv-card__desc {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #757575;
}
.loc-adv-grid .loc-adv-card--overlay .loc-adv-card__media {
  position: absolute;
  inset: 0;
  height: auto;
}
.loc-adv-grid .loc-adv-card--overlay .loc-adv-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 34px 32px;
  background: linear-gradient(to top, rgba(29, 29, 29, 0.82) 0%, rgba(29, 29, 29, 0.25) 45%, transparent 78%);
}

/* Service archive sections */
.service-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 64px;
}

.service-post {
  margin: 32px 0 48px;
}

.service-post:not(:first-child) {
  margin-top: 140px;
}

.service-post__extra-header {
  text-align: center;
  margin: 0 auto 32px;
}
.service-post__extra-header .service-post__extra-title {
  font-size: 45px;
  font-weight: 700;
  color: #1D1D1D;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .service-post__extra-header .service-post__extra-title {
    font-size: 24px;
  }
}
.service-post__extra-header .service-post__extra-desc {
  margin: 0 auto;
  max-width: 693px;
  font-size: 16px;
  line-height: 140%;
  color: #1D1D1D;
}
@media screen and (max-width: 768px) {
  .service-post__extra-header .service-post__extra-desc {
    font-size: 14px;
    line-height: 140%;
  }
}

.service-post__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-post__title {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  margin: 0;
  color: #111;
}

.service-section {
  max-height: 150px;
  position: relative;
  transition: background 300ms cubic-bezier(0.4, 0, 0.2, 1), max-height 500ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-section:hover {
  background: rgba(0, 0, 0, 0.02);
  max-height: 1000px;
}

.service-section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px 20px;
}

.service-section__left {
  min-height: 120px;
}

.service-section__index {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
}

.service-section__title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 14px;
  color: #111;
}

.service-section__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.service-section__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 12px;
  color: #333;
  background: #fff;
}

.service-section__desc {
  color: #333;
  max-width: 540px;
  margin-bottom: 18px;
}

.service-section__cta {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 24px;
  background: #ff7a00;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Collapsed / Expanded behaviour */
.service-section .service-section__content,
.service-section .service-section__images {
  opacity: 0;
  overflow: hidden;
  transition: opacity 450ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-section .service-section__title {
  opacity: 0.5;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-section:hover .service-section__content,
.service-section:hover .service-section__images {
  opacity: 1;
}

.service-section:hover .service-section__title {
  opacity: 1;
}

.service-section__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-section__images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .service-section {
    max-height: none;
    grid-template-columns: 1fr;
  }
  .service-post__title {
    font-size: 28px;
    line-height: 1.2em;
  }
  .service-section__container {
    grid-template-columns: 1fr;
  }
  /* Always expanded on mobile */
  .service-section .service-section__content,
  .service-section .service-section__images {
    opacity: 1;
  }
  .service-section .service-section__title {
    opacity: 1;
    font-size: 20px;
    line-height: 1.2em;
  }
  .service-section__images img {
    height: 140px;
  }
}
/* ==========================================================
   Anchor nav — "Jump to" sticky bar
   ========================================================== */
.services-anchor-nav {
  position: sticky;
  top: 106px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
  .services-anchor-nav {
    top: 82px;
  }
}
.services-anchor-nav .services-anchor-nav__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.services-anchor-nav .services-anchor-nav__row::-webkit-scrollbar {
  display: none;
}
.services-anchor-nav .services-anchor-nav__label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #757575;
  padding: 0 4px;
  pointer-events: none;
}
.services-anchor-nav .services-anchor-nav__link {
  flex-shrink: 0;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #199CA8;
  background: #FFFFFF;
  border: 2px solid rgba(25, 156, 168, 0.35);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
@media (hover: hover) {
  .services-anchor-nav .services-anchor-nav__link:hover:not(.is-active) {
    border-color: #199CA8;
    background: rgba(25, 156, 168, 0.08);
  }
}
.services-anchor-nav .services-anchor-nav__link.is-active {
  background: linear-gradient(90deg, #199CA8 0%, #28CFD7 100%);
  border-color: transparent;
  color: #FFFFFF;
}
.services-anchor-nav--static {
  position: static;
  top: auto;
  z-index: auto;
  backdrop-filter: none;
}

.service-single .services-anchor-nav {
  position: static;
  top: auto;
  z-index: auto;
  backdrop-filter: none;
}

/* ==========================================================
   "Choosing your system" decision matrix
   ========================================================== */
.system-choice-section {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.system-choice-section .system-choice-section__head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .system-choice-section .system-choice-section__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.system-choice-section .system-choice-section__title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.system-choice-section .system-choice-section__desc {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.system-choice-section .system-choice-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1280px) {
  .system-choice-section .system-choice-section__grid {
    grid-template-columns: 1fr;
  }
}
.system-choice-section .system-choice-section__helper {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(29, 29, 29, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.system-choice-section .system-choice-section__helper-text {
  font-size: 14px;
  color: #757575;
}
.system-choice-section .system-choice-section__helper-text strong {
  color: #1D1D1D;
}
@media screen and (max-width: 768px) {
  .system-choice-section {
    padding-top: 80px;
  }
}

.system-choice-card__tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f1f1;
  color: #757575;
}
.system-choice-card__tag--current {
  background: #F25220;
  color: #fff;
}

.system-choice-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(29, 29, 29, 0.1);
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.08);
  transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
.system-choice-card--current .system-choice-card__name {
  color: #fff;
}
.system-choice-card--current .system-choice-card__desc {
  color: rgba(255, 255, 255, 0.65);
}
.system-choice-card--current .system-choice-card__link {
  color: #F25220;
}
.system-choice-card--current .system-choice-card__attr dt {
  color: #F25220;
}
.system-choice-card--current .system-choice-card__attr dd {
  color: rgba(255, 255, 255, 0.85);
}
.system-choice-card:nth-child(2) .system-choice-card__link {
  color: #199CA8;
}
.system-choice-card:nth-child(2) .system-choice-card__attr dt {
  color: #199CA8;
}
@media (hover: hover) {
  .system-choice-card:hover {
    background: linear-gradient(135deg, rgba(25, 156, 168, 0.35) 0%, transparent 55%), #1D1D1D;
    border-color: #1D1D1D;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(29, 29, 29, 0.22);
    transform: translateY(-2px);
  }
  .system-choice-card:hover .system-choice-card__name {
    color: #FFFFFF;
  }
  .system-choice-card:hover .system-choice-card__desc {
    color: rgba(255, 255, 255, 0.75);
  }
  .system-choice-card:hover .system-choice-card__link {
    color: rgba(255, 255, 255, 0.9);
  }
  .system-choice-card:hover .system-choice-card__attrs {
    border-top-color: rgba(255, 255, 255, 0.2);
  }
  .system-choice-card:hover .system-choice-card__attr {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  .system-choice-card:hover .system-choice-card__attr dt {
    color: rgba(255, 255, 255, 0.7);
  }
  .system-choice-card:hover .system-choice-card__attr dd {
    color: #FFFFFF;
  }
}
.system-choice-card .system-choice-card__name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1D1D1D;
}
.system-choice-card .system-choice-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: #757575;
  margin: 0;
}
.system-choice-card .system-choice-card__attrs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.system-choice-card .system-choice-card__attr {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.system-choice-card .system-choice-card__attr dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F25220;
  flex-shrink: 0;
}
.system-choice-card .system-choice-card__attr dd {
  font-size: 13px;
  font-weight: 600;
  color: #1D1D1D;
  text-align: right;
  margin: 0;
}
.system-choice-card .system-choice-card__link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: #F25220;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.system-choice-card .system-choice-card__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.system-choice-card .system-choice-card__link:hover {
  gap: 10px;
}

/* ==========================================================
   Brands grid (services page) — inner borders only
   ========================================================== */
.svc-brands-section {
  padding: 80px 0 0;
}
.svc-brands-section .svc-brands-section__header {
  padding-bottom: 40px;
}
.svc-brands-section .svc-brands-section__title {
  margin-bottom: 12px;
}
.svc-brands-section .svc-brands-section__desc {
  max-width: 600px;
}

.svc-brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.1); /* gap shows through as inner borders */
}
@media (max-width: 1000px) {
  .svc-brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 640px) {
  .svc-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .svc-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.svc-brands-cell {
  aspect-ratio: 2/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.svc-brands-cell:hover {
  background: #f1f1f1;
}
.svc-brands-cell img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.svc-brands-cell:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.svc-brands-cell .svc-brands-cell__name {
  font-size: 15px;
  font-weight: 600;
  color: #1D1D1D;
  text-align: center;
  transition: color 0.2s ease;
}
.svc-brands-cell:hover .svc-brands-cell__name {
  color: #F25220;
}

/* ==========================================================
   Service type section — archive (selector + single hero)
   ========================================================== */
.svc-type-section--selector,
.svc-type-section--single {
  padding: 70px 0 90px;
}
.svc-type-section--selector.svc-type-section--alt-bg,
.svc-type-section--single.svc-type-section--alt-bg {
  background: #F7F4EF;
}
.svc-type-section--selector .svc-type-section__head,
.svc-type-section--single .svc-type-section__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 1280px) {
  .svc-type-section--selector .svc-type-section__head,
  .svc-type-section--single .svc-type-section__head {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.svc-type-section--selector .svc-type-section__num,
.svc-type-section--single .svc-type-section__num {
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: #F25220;
}
.svc-type-section--selector .svc-type-section__title,
.svc-type-section--single .svc-type-section__title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
}
.svc-type-section--selector .svc-type-section__title em,
.svc-type-section--single .svc-type-section__title em {
  color: #F25220;
  font-style: normal;
}
.svc-type-section--selector .svc-type-section__desc,
.svc-type-section--single .svc-type-section__desc {
  margin: 0;
  color: rgba(29, 29, 29, 0.68);
  font-size: 16px;
  line-height: 1.55;
  max-width: 56ch;
}

.svc-type-section--single .svc-type-single-hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  color: #FFFFFF;
  isolation: isolate;
}
.svc-type-section--single .svc-type-single-hero:hover .svc-type-single-hero__img {
  transform: scale(1.05);
}
.svc-type-section--single .svc-type-single-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.svc-type-section--single .svc-type-single-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(80% 90% at 20% 60%, #000, transparent 88%);
  pointer-events: none;
}
.svc-type-section--single .svc-type-single-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, rgba(12, 12, 14, 0.92) 22%, rgba(12, 12, 14, 0.5) 55%, rgba(12, 12, 14, 0.15));
  pointer-events: none;
}
.svc-type-section--single .svc-type-single-hero__badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #0c0c0e;
}
.svc-type-section--single .svc-type-single-hero__body {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 46px);
  max-width: 620px;
}
.svc-type-section--single .svc-type-single-hero__system {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F25220;
}
.svc-type-section--single .svc-type-single-hero__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.1;
  color: #FFFFFF;
}
.svc-type-section--single .svc-type-single-hero__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #dcdce4;
  margin: 0 0 28px;
  max-width: 46ch;
}
.svc-type-section--single .svc-type-single-hero__specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px 28px;
  margin-bottom: 30px;
}
.svc-type-section--single .svc-type-single-hero__spec small {
  display: block;
  font-size: 12px;
  color: #9a9aa6;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.svc-type-section--single .svc-type-single-hero__spec b {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
}
.svc-type-section--single .svc-type-single-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.svc-type-section--single .svc-type-single-hero__ghost {
  display: inline-flex;
  align-items: center;
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.svc-type-section--single .svc-type-single-hero__ghost:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.svc-type-section--selector .svc-type-selector {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .svc-type-section--selector .svc-type-selector {
    grid-template-columns: 1fr;
  }
}
.svc-type-section--selector .svc-type-selector__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 901px) {
  .svc-type-section--selector .svc-type-selector--stretch .svc-type-selector__list {
    height: 100%;
  }
  .svc-type-section--selector .svc-type-selector--stretch .svc-sel-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.svc-type-section--selector .svc-sel-item {
  border: 1px solid rgba(29, 29, 29, 0.1);
  border-radius: 18px;
  padding: 22px 24px;
  cursor: pointer;
  transition: background-color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.svc-type-section--selector .svc-sel-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #F25220;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.svc-type-section--selector .svc-sel-item:hover {
  border-color: rgba(242, 82, 32, 0.42);
}
.svc-type-section--selector .svc-sel-item.is-active {
  background: #1D1D1D;
  border-color: #1D1D1D;
}
.svc-type-section--selector .svc-sel-item.is-active::before {
  transform: scaleY(1);
}
.svc-type-section--selector .svc-sel-item.is-active .svc-sel-item__n {
  color: rgba(242, 82, 32, 0.9);
}
.svc-type-section--selector .svc-sel-item.is-active h4 {
  color: #FFFFFF;
}
.svc-type-section--selector .svc-sel-item.is-active .svc-sel-item__system {
  color: rgba(242, 82, 32, 0.95);
}
.svc-type-section--selector .svc-sel-item.is-active .svc-sel-item__plus {
  background: #F25220;
  border-color: #F25220;
  color: #FFFFFF;
  transform: rotate(180deg);
}
.svc-type-section--selector .svc-sel-item__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.svc-type-section--selector .svc-sel-item__top h4 {
  font-size: 21px;
  font-weight: 600;
  color: #1D1D1D;
  transition: 0.2s ease;
  margin: 0;
}
.svc-type-section--selector .svc-sel-item__n {
  font-size: 13px;
  color: #F25220;
  font-weight: 600;
}
.svc-type-section--selector .svc-sel-item__system {
  display: block;
  margin: 2px 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F25220;
}
.svc-type-section--selector .svc-sel-item__plus {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 29, 0.1);
  display: grid;
  place-items: center;
  color: #1D1D1D;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  flex: 0 0 auto;
}
.svc-type-section--selector .svc-sel-item__plus svg {
  width: 14px;
  height: 14px;
  display: block;
}
.svc-type-section--selector .svc-sel-item__brands {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.svc-type-section--selector .svc-sel-item__brands span {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(29, 29, 29, 0.1);
  border: 1px solid rgba(29, 29, 29, 0.18);
  color: rgba(29, 29, 29, 0.92);
}
.svc-type-section--selector .svc-sel-item.is-active .svc-sel-item__brands span {
  background: rgba(255, 255, 255, 0.1);
  color: #dcdce4;
}
.svc-type-section--selector .svc-sel-stage {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 560px;
  background: #1D1D1D;
}
@media (max-width: 900px) {
  .svc-type-section--selector .svc-sel-stage {
    min-height: 420px;
    order: -1;
  }
}
.svc-type-section--selector .svc-sel-stage__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transform: scale(1.06);
}
.svc-type-section--selector .svc-sel-stage__img.is-show {
  opacity: 1;
  transform: scale(1);
}
.svc-type-section--selector .svc-sel-stage__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-type-section--selector .svc-sel-stage__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 29, 29, 0.28) 0%, rgba(29, 29, 29, 0.52) 42%, rgba(29, 29, 29, 0.94) 100%);
}
.svc-type-section--selector .svc-sel-stage__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1D1D1D;
}
.svc-type-section--selector .svc-sel-stage__badge b {
  color: #F25220;
}
.svc-type-section--selector .svc-sel-stage__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 34px;
  color: #FFFFFF;
}
.svc-type-section--selector .svc-sel-stage__pane {
  display: none;
}
.svc-type-section--selector .svc-sel-stage__pane.is-show {
  display: block;
  animation: svcPaneRise 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.svc-type-section--selector .svc-sel-stage__pane .svc-sel-stage__system {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F25220;
}
.svc-type-section--selector .svc-sel-stage__pane h5 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}
.svc-type-section--selector .svc-sel-stage__pane p {
  margin: 0;
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.svc-type-section--selector .svc-sel-stage__specs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  max-width: 560px;
}
@media screen and (max-width: 768px) {
  .svc-type-section--selector .svc-sel-stage__specs {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.svc-type-section--selector .svc-sel-stage__specs .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  line-height: 1.4;
}
.svc-type-section--selector .svc-sel-stage__specs .row span:first-child {
  color: rgba(255, 255, 255, 0.68);
  flex-shrink: 0;
}
.svc-type-section--selector .svc-sel-stage__specs .row span:last-child {
  color: #FFFFFF;
  font-weight: 600;
  text-align: right;
}
.svc-type-section--selector .svc-sel-stage__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.svc-type-section--selector .svc-sel-stage__ghost {
  display: inline-flex;
  align-items: center;
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.svc-type-section--selector .svc-sel-stage__ghost:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.svc-type-section--selector .svc-type-section__cta-bar {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(29, 29, 29, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.svc-type-section--selector .svc-type-section__cta-bar .btn,
.svc-type-section--selector .svc-type-section__cta-bar a.btn {
  margin-left: auto;
  flex-shrink: 0;
}
.svc-type-section--selector .svc-type-section__cta-chips {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-type-section--selector .svc-type-section__chip {
  font-size: 12.5px;
  padding: 8px 14px;
  border: 1px solid rgba(29, 29, 29, 0.1);
  border-radius: 999px;
  color: rgba(29, 29, 29, 0.72);
  background: rgba(255, 255, 255, 0.9);
}

@keyframes svcPaneRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.services-archive-hero {
  padding-top: 122px;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .services-archive-hero {
    padding-top: 106px;
    padding-bottom: 60px;
  }
}
.services-archive-hero {
  position: relative;
  width: 100%;
  height: auto;
  max-height: none;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFFFFF;
  isolation: isolate;
}
@media screen and (min-width: 769px) {
  .services-archive-hero {
    min-height: max(620px, 100svh - var(--announcement-bar-height, 0px));
  }
}
@media screen and (max-width: 768px) {
  .services-archive-hero {
    align-items: flex-start;
  }
}
.services-archive-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 3.6vw, 56px);
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .services-archive-hero__inner {
    grid-template-columns: 1fr;
  }
}
.services-archive-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.72;
  background-image: linear-gradient(rgba(29, 29, 29, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(29, 29, 29, 0.11) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.services-archive-hero__grid::before, .services-archive-hero__grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(340px 250px at 18% 26%, rgba(242, 82, 32, 0.94) 0%, rgba(242, 82, 32, 0.38) 50%, transparent 82%), radial-gradient(380px 270px at 76% 18%, rgba(242, 82, 32, 0.9) 0%, rgba(242, 82, 32, 0.36) 52%, transparent 84%), radial-gradient(360px 260px at 68% 74%, rgba(242, 82, 32, 0.86) 0%, rgba(242, 82, 32, 0.34) 50%, transparent 83%), radial-gradient(320px 230px at 34% 68%, rgba(242, 82, 32, 0.82) 0%, rgba(242, 82, 32, 0.32) 48%, transparent 82%);
  opacity: 1;
}
.services-archive-hero__grid::before {
  -webkit-mask-image: repeating-linear-gradient(0deg, #000 0 1px, transparent 1px 64px);
  mask-image: repeating-linear-gradient(0deg, #000 0 1px, transparent 1px 64px);
}
.services-archive-hero__grid::after {
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 1px, transparent 1px 64px);
  mask-image: repeating-linear-gradient(90deg, #000 0 1px, transparent 1px 64px);
}
@supports (mask-image: radial-gradient(circle at center, #000, transparent)) {
  .services-archive-hero__grid {
    mask-image: radial-gradient(86% 86% at 50% 45%, #000 0%, transparent 82%);
    -webkit-mask-image: radial-gradient(86% 86% at 50% 45%, #000 0%, transparent 82%);
  }
}
.services-archive-hero__wave {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.85;
}
.services-archive-hero__wave--h {
  height: 2px;
  width: 300px;
  left: -320px;
  background: linear-gradient(90deg, transparent, #F25220, transparent);
  animation: servicesHeroWaveH linear infinite;
}
.services-archive-hero__wave--v {
  width: 2px;
  height: 300px;
  top: -320px;
  background: linear-gradient(180deg, transparent, #F25220, transparent);
  animation: servicesHeroWaveV linear infinite;
  opacity: 0.7;
}
.services-archive-hero__wave--h:nth-of-type(2) {
  top: 192px;
  animation-duration: 6.5s;
}
.services-archive-hero__wave--h:nth-of-type(3) {
  top: 384px;
  animation-duration: 9s;
  animation-delay: 1.4s;
}
.services-archive-hero__wave--h:nth-of-type(4) {
  top: 576px;
  animation-duration: 7.5s;
  animation-delay: 0.6s;
}
.services-archive-hero__wave--v:nth-of-type(5) {
  left: 18%;
  animation-duration: 8s;
  animation-delay: 0.3s;
}
.services-archive-hero__wave--v:nth-of-type(6) {
  left: 62%;
  animation-duration: 6s;
  animation-delay: 1.1s;
}
.services-archive-hero__crumbs {
  margin-bottom: 22px;
}
.services-archive-hero__crumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-archive-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(29, 29, 29, 0.62);
}
.services-archive-hero__crumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.services-archive-hero__crumb a:hover {
  color: #F25220;
}
.services-archive-hero__crumb.is-active span {
  color: #F25220;
}
.services-archive-hero__crumb-sep {
  opacity: 0.6;
}
.services-archive-hero__title {
  margin: 0;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.99;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1D1D1D;
}
.services-archive-hero__title em {
  color: #F25220;
  font-style: normal;
}
.services-archive-hero__title-line {
  display: block;
}
.services-archive-hero__lede {
  margin-top: 24px;
  max-width: 48ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.62);
}
.services-archive-hero__cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.services-archive-hero__tags {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.services-archive-hero__tag {
  font-size: 13px;
  color: rgba(29, 29, 29, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.services-archive-hero__tag b {
  color: #1D1D1D;
  font-weight: 700;
}
.services-archive-hero__tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F25220;
}
.services-archive-hero__visual {
  position: relative;
  height: clamp(400px, 45vw, 580px);
}
@media screen and (max-width: 768px) {
  .services-archive-hero__visual {
    height: 330px;
    margin-top: 10px;
  }
}
.services-archive-hero__img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f1f1;
  box-shadow: 0 30px 70px -28px rgba(29, 29, 29, 0.35);
}
.services-archive-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-archive-hero__img--main {
  inset: 0 0 48px 42px;
  animation: servicesHeroFloaty 6s ease-in-out infinite;
}
.services-archive-hero__img--main img {
  object-position: center 42%;
}
.services-archive-hero__img--sub {
  width: 210px;
  height: 240px;
  left: 0;
  bottom: 0;
  border: 6px solid #FFFFFF;
  animation: servicesHeroFloaty 6s ease-in-out infinite 0.8s;
}
.services-archive-hero__img--sub img {
  object-position: center 28%;
}
.services-archive-hero__badge {
  position: absolute;
  top: 24px;
  left: -24px;
  z-index: 3;
  background: #FFFFFF;
  border: 1px solid rgba(29, 29, 29, 0.1);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 20px 50px -20px rgba(29, 29, 29, 0.3);
  animation: servicesHeroFloaty 5s ease-in-out infinite 0.4s;
}
.services-archive-hero__badge b {
  display: block;
  font-size: 22px;
  color: #1D1D1D;
  line-height: 1;
}
.services-archive-hero__stars {
  margin-top: 6px;
  color: #F25220;
  font-size: 12px;
  letter-spacing: 2px;
}
.services-archive-hero__badge-meta {
  margin: 4px 0 0;
  color: rgba(29, 29, 29, 0.62);
  font-size: 11px;
  line-height: 1.2;
}
.services-archive-hero__badge-sources {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-archive-hero__badge-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.services-archive-hero__badge-source svg {
  width: auto;
  height: 14px;
}
.services-archive-hero__badge-source small {
  display: block;
  color: #1D1D1D;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
.services-archive-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 28px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .services-archive-hero__scroll {
    display: none;
  }
}
.services-archive-hero__scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F25220;
  animation: servicesHeroPulse 1.8s infinite;
}

@keyframes servicesHeroWaveH {
  from {
    left: -320px;
  }
  to {
    left: 110%;
  }
}
@keyframes servicesHeroWaveV {
  from {
    top: -320px;
  }
  to {
    top: 110%;
  }
}
@keyframes servicesHeroPulse {
  50% {
    opacity: 0.2;
  }
}
@keyframes servicesHeroFloaty {
  50% {
    transform: translateY(-12px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .services-archive-hero__wave,
  .services-archive-hero__scroll-dot,
  .services-archive-hero__img--main,
  .services-archive-hero__img--sub,
  .services-archive-hero__badge {
    animation: none !important;
  }
}
.service-category-hero__crumbs {
  margin-bottom: 22px;
}
.service-category-hero__crumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-category-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.62);
}
.service-category-hero__crumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.service-category-hero__crumb a:hover {
  color: #F25220;
}
.service-category-hero__crumb.is-active span {
  color: #F25220;
}
.service-category-hero__crumb-sep {
  opacity: 0.55;
}
.service-category-hero__crumb {
  color: rgba(255, 255, 255, 0.62);
}
.service-category-hero__title {
  margin: 0;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.99;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1D1D1D;
  color: #FFFFFF;
  line-height: 1.05;
  max-width: none;
}
.service-category-hero__title-line {
  display: block;
}
.service-category-hero__title-line--accent {
  color: #F25220;
}
.service-category-hero__lede {
  margin-top: 24px;
  max-width: 48ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.62);
  color: #d4d4dc;
  max-width: 62ch;
}
.service-category-hero__chips {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-category-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  transition: border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.service-category-hero__chip:hover {
  border-color: rgba(242, 82, 32, 0.55);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.service-category-hero__chip-num {
  font-size: 11px;
  font-weight: 700;
  color: #F25220;
}
.service-category-hero__chip-arrow {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease, transform 0.2s ease;
}
.service-category-hero__chip:hover .service-category-hero__chip-arrow {
  color: #F25220;
  transform: translateX(3px);
}
.service-category-hero__count {
  margin: 28px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
}
.service-category-hero__count b {
  color: #F25220;
}

.service-child-hero__crumbs {
  margin-bottom: 22px;
}
.service-child-hero__crumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-child-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.62);
}
.service-child-hero__crumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.service-child-hero__crumb a:hover {
  color: #F25220;
}
.service-child-hero__crumb.is-active span {
  color: #F25220;
}
.service-child-hero__crumb-sep {
  opacity: 0.55;
}
.service-child-hero__crumb {
  color: rgba(255, 255, 255, 0.62);
}
.service-child-hero__title {
  margin: 0;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.99;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1D1D1D;
  color: #FFFFFF;
  line-height: 1.05;
  max-width: none;
}
.service-child-hero__title-line {
  display: block;
}
.service-child-hero__title-line--accent {
  color: #F25220;
}
.service-child-hero__lede {
  margin-top: 24px;
  max-width: 48ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.62);
  color: #d4d4dc;
  max-width: 62ch;
}
.service-child-hero__specs {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px clamp(24px, 4vw, 56px);
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .service-child-hero__specs {
    grid-template-columns: 1fr 1fr;
  }
}
.service-child-hero__spec dt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.service-child-hero__spec dd {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}
.service-child-hero__brands {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.service-child-hero__brands-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.service-child-hero__brand {
  font-size: 13px;
  padding: 7px 13px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-weight: 500;
}

.brand-single-hero__crumbs {
  margin-bottom: 22px;
}
.brand-single-hero__crumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.brand-single-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.62);
}
.brand-single-hero__crumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.brand-single-hero__crumb a:hover {
  color: #F25220;
}
.brand-single-hero__crumb.is-active span {
  color: #F25220;
}
.brand-single-hero__crumb-sep {
  opacity: 0.55;
}
.brand-single-hero__crumb {
  color: rgba(255, 255, 255, 0.62);
}
.brand-single-hero__title {
  margin: 0;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.99;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1D1D1D;
  color: #FFFFFF;
  line-height: 1.05;
  max-width: none;
}
.brand-single-hero__title-line {
  display: block;
}
.brand-single-hero__title-line--accent {
  color: #F25220;
}
.brand-single-hero__lede {
  margin-top: 24px;
  max-width: 48ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.62);
  color: #d4d4dc;
  max-width: 62ch;
}
.brand-single-hero__tags {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.brand-single-hero__tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand-single-hero__tag b {
  color: #FFFFFF;
  font-weight: 700;
}
.brand-single-hero__tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F25220;
  flex-shrink: 0;
}

.service-single .location-brands {
  margin: 120px 0;
}
.service-single .section-heading,
.service-single .page-section-title__heading {
  font-weight: 700;
}

.service-included {
  padding: 48px 0 24px;
}

.service-included__slider .swiper {
  padding: 28px 0;
}

.service-included__title {
  font-weight: 700;
  line-height: 48px;
  font-size: clamp(28px, 4.2vw, 45.6px);
  margin-bottom: 20px;
}

.service-included__button {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.included-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 40px 28px;
  min-height: 285px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.included-card__num {
  position: absolute;
  right: -50px;
  bottom: 120px;
  font-size: 400px;
  font-weight: 700;
  line-height: 0;
  color: rgba(242, 82, 32, 0.07);
  pointer-events: none;
}

.included-card__title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 20px;
}

.included-card__desc {
  font-size: 14px;
  color: #333;
}

.when-need {
  background: #F9FAFB;
}
.when-need .when-need__header {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.when-need .when-need__header .page-section-title__sub {
  max-width: 640px;
}
.when-need .when-need__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 20px);
}
@media screen and (max-width: 1280px) {
  .when-need .when-need__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .when-need .when-need__grid {
    grid-template-columns: 1fr;
  }
}

.when-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(29, 29, 29, 0.1);
  overflow: hidden;
  transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
@media (hover: hover) {
  .when-card:hover {
    background: linear-gradient(135deg, rgba(25, 156, 168, 0.35) 0%, transparent 55%), #1D1D1D;
    border-color: #1D1D1D;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(29, 29, 29, 0.22);
    transform: translateY(-2px);
  }
  .when-card:hover .when-card__num {
    color: #FFFFFF;
  }
  .when-card:hover .when-card__title {
    color: #FFFFFF;
  }
  .when-card:hover .when-card__desc {
    color: rgba(255, 255, 255, 0.8);
  }
  .when-card:hover .when-card__image img {
    transform: scale(1.04);
  }
}
.when-card .when-card__image {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.when-card .when-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.when-card .when-card__body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.when-card .when-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F25220;
  transition: color 0.28s ease;
}
.when-card .when-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1D1D1D;
  transition: color 0.28s ease;
}
.when-card .when-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #757575;
  margin: 0;
  transition: color 0.28s ease;
}

.service-pro {
  padding: 60px 0;
}

.service-pro__grid {
  display: grid;
  grid-template-columns: 1fr 640px;
  gap: 120px;
  align-items: center;
}

.service-pro__title {
  font-size: clamp(32px, 5vw, 45.6px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.service-pro__lead {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

.service-pro__desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 28px;
}

.service-pro__image {
  height: 530px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

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

.service-pro__specialist {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(22, 25, 32, 0.4);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: saturate(140%) blur(6px);
}

.specialist__avatar {
  position: relative;
  width: 48px;
  height: 48px;
}

.specialist__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
}

.specialist__status {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ade80;
  /* green online */
  border: 1px solid currentColor;
}

.specialist__title {
  font-weight: 600;
}

.specialist__subtitle {
  color: #cbd4e1;
  font-size: 14px;
}

@media (max-width: 992px) {
  .service-pro__grid {
    grid-template-columns: 1fr;
  }
}
.service-lifecycle {
  padding: 80px 0 0;
}

.service-lifecycle__header {
  text-align: center;
  margin-bottom: 32px;
}

.service-lifecycle__content {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 120px;
  align-items: center;
  max-width: 1200px;
  margin: 80px auto 0;
}

.lifecycle-circle {
  width: 565px;
  height: 565px;
  margin: 0 auto;
  position: relative;
}

.lifecycle-circle__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

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

.lifecycle-circle__core {
  fill: #0c0c0e;
  pointer-events: none;
}

.lifecycle-circle__core-ring {
  fill: none;
  stroke: rgba(242, 82, 32, 0.5);
  stroke-width: 1.5;
  pointer-events: none;
}
.lifecycle-circle__core-ring--inner {
  opacity: 0.5;
}

.lifecycle-circle__core-sub {
  fill: rgb(244.2474576271, 111.9084745763, 70.5525423729);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-anchor: middle;
  text-transform: uppercase;
  font-weight: 600;
  pointer-events: none;
}

.lifecycle-circle__core-title {
  fill: #FFFFFF;
  font-size: 22px;
  font-weight: 700;
  text-anchor: middle;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.lifecycle-circle__icon {
  font-size: 16px;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
}

.lifecycle-circle__label {
  fill: #6b6b76;
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  transition: fill 0.4s ease, font-weight 0.4s ease;
  pointer-events: none;
}

.lifecycle-circle__ring {
  fill: none;
  stroke: rgba(29, 29, 29, 0.1);
  stroke-width: 1.5;
  pointer-events: none;
}
.lifecycle-circle__ring--dash {
  stroke-dasharray: 3 7;
  stroke: rgba(242, 82, 32, 0.35);
}
.lifecycle-circle__ring--inner {
  opacity: 0.6;
}
.lifecycle-circle__ring--spin {
  transform-origin: 250px 250px;
  animation: lifecycle-orbit-spin 60s linear infinite;
}
.lifecycle-circle__ring--spin-rev {
  animation-duration: 90s;
  animation-direction: reverse;
}

@keyframes lifecycle-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}
.lifecycle-circle__arc {
  stroke-dasharray: var(--lc-arc-len, 0 1256);
  stroke-dashoffset: var(--lc-arc-len, 0);
  transition: stroke-dashoffset 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.lifecycle-circle__arc.is-draw {
  stroke-dashoffset: 0;
}

.lifecycle-circle__node {
  cursor: pointer;
  outline: none;
}
.lifecycle-circle__node:focus-visible .lifecycle-circle__dot {
  stroke: #F25220;
  stroke-width: 2.5;
}

.lifecycle-circle__halo {
  fill: rgba(242, 82, 32, 0);
  transition: fill 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lifecycle-circle__dot {
  fill: #FFFFFF;
  stroke: rgba(29, 29, 29, 0.12);
  stroke-width: 1.5;
  transition: fill 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), stroke 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transform-box: fill-box;
  transform-origin: center;
}

.lifecycle-circle__connector {
  stroke: rgba(242, 82, 32, 0.4);
  stroke-width: 1.5;
  stroke-dasharray: 2 5;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}

.lifecycle-circle__node--float {
  animation: lifecycle-orbit-float 5s ease-in-out infinite;
}

@keyframes lifecycle-orbit-float {
  50% {
    transform: translateY(-5px);
  }
}
.lifecycle-circle__node:is(:hover, .is-hover, .is-active, :focus-visible) .lifecycle-circle__dot {
  stroke: #F25220;
}

.lifecycle-circle__node.is-active .lifecycle-circle__dot {
  fill: #F25220;
  stroke: #F25220;
  transform: scale(1.18);
}
.lifecycle-circle__node.is-active .lifecycle-circle__halo {
  fill: rgba(242, 82, 32, 0.14);
}
.lifecycle-circle__node.is-active .lifecycle-circle__label {
  fill: #1D1D1D;
  font-weight: 700;
}
.lifecycle-circle__node.is-active .lifecycle-circle__connector {
  opacity: 1;
}

.lifecycle-list {
  display: flex;
  flex-direction: column;
}

.lifecycle-item {
  padding: 24px;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #e0e0e0;
  display: block;
  border-radius: 12px;
}

.lifecycle-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.lifecycle-item:not(.is-open) .lifecycle-item__header {
  margin-bottom: 0;
}

.lifecycle-item__btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  flex-shrink: 0;
  pointer-events: none;
}
.lifecycle-item__btn-link svg {
  width: 16px;
  height: 16px;
}

.lifecycle-item__title {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2em;
}

.lifecycle-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lifecycle-item.is-open .lifecycle-item__panel {
  grid-template-rows: 1fr;
}

.lifecycle-item__panel-inner {
  overflow: hidden;
}

.lifecycle-item__desc {
  color: #6b6b6b;
  margin: 0;
}

.lifecycle-item.is-hover,
.lifecycle-item:hover {
  background: #fff7f2;
}

.lifecycle-item.is-active {
  background: #f1501f;
  color: #fff;
}

.lifecycle-item.is-active .lifecycle-item__desc {
  color: #fff;
}

.lifecycle-item.is-active .lifecycle-item__btn-link {
  background: linear-gradient(90deg, #199CA8 0%, #28CFD7 100%);
}

@media (prefers-reduced-motion: reduce) {
  .lifecycle-circle__ring--spin {
    animation: none;
  }
  .lifecycle-circle__node--float {
    animation: none;
  }
  .lifecycle-circle__arc {
    transition: none;
  }
  .lifecycle-item__panel {
    transition: none;
  }
}
@media (max-width: 992px) {
  .service-lifecycle__content {
    grid-template-columns: 1fr;
  }
  .lifecycle-circle {
    width: 320px;
    height: 320px;
  }
}
/* ==========================================================
   "Time to replace?" self-qualifier callout
   ========================================================== */
.svc-replace-callout {
  padding: 48px 0;
}
.svc-replace-callout .svc-replace-callout__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px 48px;
  padding: 28px 32px;
  background: rgba(242, 82, 32, 0.04);
  border: 1px solid rgba(242, 82, 32, 0.15);
  border-left: 4px solid #F25220;
  border-radius: 0 8px 8px 0;
}
@media screen and (max-width: 1280px) {
  .svc-replace-callout .svc-replace-callout__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.svc-replace-callout .svc-replace-callout__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: #1D1D1D;
}
.svc-replace-callout .svc-replace-callout__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #757575;
  margin: 0;
}
.svc-replace-callout .svc-replace-callout__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  align-content: start;
}
@media screen and (max-width: 768px) {
  .svc-replace-callout .svc-replace-callout__list {
    grid-template-columns: 1fr;
  }
}
.svc-replace-callout .svc-replace-callout__list li {
  font-size: 13px;
  line-height: 1.45;
  color: #1D1D1D;
  padding-left: 16px;
  position: relative;
}
.svc-replace-callout .svc-replace-callout__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F25220;
}

/* ==========================================================
   Service scope grid — what's included
   ========================================================== */
.svc-scope-section {
  margin-top: 48px;
  padding-top: clamp(96px, 8vw, 120px);
  padding-bottom: 80px;
  background: #f7f4ef;
}
@media screen and (max-width: 768px) {
  .svc-scope-section {
    margin-top: 32px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.svc-scope-section .svc-scope-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.svc-scope-section .svc-scope-section__head .page-section-title {
  margin-bottom: 0;
}
@media screen and (max-width: 1280px) {
  .svc-scope-section .svc-scope-section__head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.svc-scope-section .svc-scope-section__desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.72);
  margin: 0;
  max-width: 52ch;
}
.svc-scope-section .svc-scope-section__body {
  margin-bottom: clamp(28px, 4vw, 40px);
}
.svc-scope-section .svc-scope-section__body--with-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .svc-scope-section .svc-scope-section__body--with-visual {
    grid-template-columns: 1fr;
  }
}
.svc-scope-section .svc-scope-section__visual {
  position: relative;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 1024px) {
  .svc-scope-section .svc-scope-section__visual {
    min-height: 260px;
  }
}
.svc-scope-section .svc-scope-section__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-scope-section .svc-scope-section__visual-cap {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px -24px rgba(29, 29, 29, 0.35);
}
.svc-scope-section .svc-scope-section__visual-cap strong {
  font-size: 15px;
  font-weight: 700;
  color: #1D1D1D;
}
.svc-scope-section .svc-scope-section__visual-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F25220;
}
.svc-scope-section .svc-scope-section__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(29, 29, 29, 0.08);
}
.svc-scope-section .svc-scope-section__foot-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(29, 29, 29, 0.72);
  max-width: 56ch;
}

.svc-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.svc-scope-grid--thirds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .svc-scope-grid--thirds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.svc-scope-grid--dense {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 768px) {
  .svc-scope-grid {
    grid-template-columns: 1fr;
  }
}

.svc-scope-item {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(29, 29, 29, 0.08);
  border-radius: 12px;
  padding: 24px 24px 24px 28px;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px -8px rgba(29, 29, 29, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}
.svc-scope-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: #F25220;
}
@media (hover: hover) {
  .svc-scope-item:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 82, 32, 0.28);
    box-shadow: 0 16px 36px -22px rgba(29, 29, 29, 0.22);
    background: #FFFFFF;
  }
}
.svc-scope-item .svc-scope-item__num {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(242, 82, 32, 0.08);
  pointer-events: none;
  user-select: none;
}
.svc-scope-item .svc-scope-item__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 36px;
}
.svc-scope-item .svc-scope-item__title {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1D1D1D;
  line-height: 1.25;
}
.svc-scope-item .svc-scope-item__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #757575;
  margin: 0;
}

/* ==========================================================
   Service brand cards — related brands grid
   ========================================================== */
.svc-brand-cards-section {
  padding: 80px 0;
  background: #F9FAFB;
}
.svc-brand-cards-section .svc-brand-cards-section__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 40px;
}

.svc-brand-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) {
  .svc-brand-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .svc-brand-cards-grid {
    grid-template-columns: 1fr;
  }
}

.svc-brand-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.svc-brand-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.18);
}
.svc-brand-card .svc-brand-card__logo {
  height: 40px;
  display: flex;
  align-items: center;
}
.svc-brand-card .svc-brand-card__logo img {
  max-height: 36px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.svc-brand-card:hover .svc-brand-card__logo img {
  filter: grayscale(0%);
  opacity: 1;
}
.svc-brand-card .svc-brand-card__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1D1D1D;
  line-height: 1.2;
}
.svc-brand-card .svc-brand-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: #757575;
  margin: 0;
  flex: 1;
}
.svc-brand-card .svc-brand-card__link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  color: #F25220;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.svc-brand-card .svc-brand-card__link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.svc-brand-card .svc-brand-card__link:hover {
  gap: 10px;
}

/* ==========================================================
   Related services section — image overlay cards
   ========================================================== */
.svc-related-section {
  padding: 80px 0;
  background: #f7f4ef;
}
@media screen and (max-width: 768px) {
  .svc-related-section {
    padding: 60px 0;
  }
}
.svc-related-section .svc-related-section__head {
  margin-bottom: 48px;
  max-width: 1000px;
}
.svc-related-section .svc-related-section__head .page-section-title {
  margin-bottom: 0;
}
.svc-related-section .svc-related-section__head .page-section-title__sub {
  max-width: 60ch;
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) {
  .svc-related-grid {
    grid-template-columns: 1fr;
  }
}

.svc-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: 26px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #FFFFFF;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (hover: hover) {
  .svc-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px -28px rgba(29, 29, 29, 0.35);
  }
  .svc-related-card:hover .svc-related-card__image {
    transform: scale(1.07);
  }
  .svc-related-card:hover .svc-related-card__arrow {
    transform: translate(3px, -3px);
  }
}
.svc-related-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.svc-related-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(29, 29, 29, 0.1) 30%, rgba(29, 29, 29, 0.88) 100%);
  pointer-events: none;
}
.svc-related-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
}
.svc-related-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: auto;
}
.svc-related-card__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgb(245.3711864407, 126.8627118644, 89.8288135593);
}
.svc-related-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
}
.svc-related-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.svc-related-card__title {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.svc-related-card__arrow {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F25220;
  color: #FFFFFF;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.svc-related-card__arrow svg {
  width: 14px;
  height: 14px;
}
.svc-related-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: #cfcfd8;
}

/* Styles moved to component-level files:
 * - components/_brands-grid-grouped-section.scss
 * - components/_brands-grid-all-section.scss
 */
/* ==========================================================
   Brand archive hero — grid + orange waves (mirrors services-archive-hero)
   ========================================================== */
.brand-archive-hero {
  position: relative;
  height: auto;
  max-height: none;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFFFFF;
  padding-top: 122px;
  padding-bottom: 56px;
  isolation: isolate;
}
@media screen and (min-width: 769px) {
  .brand-archive-hero {
    height: 100vh;
    height: 100dvh;
    max-height: 1200px;
  }
}
@media screen and (max-width: 768px) {
  .brand-archive-hero {
    align-items: flex-start;
    padding-top: 106px;
    padding-bottom: 60px;
  }
}
.brand-archive-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.72;
  background-image: linear-gradient(rgba(29, 29, 29, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(29, 29, 29, 0.11) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.brand-archive-hero__grid::before, .brand-archive-hero__grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(340px 250px at 18% 26%, rgba(242, 82, 32, 0.94) 0%, rgba(242, 82, 32, 0.38) 50%, transparent 82%), radial-gradient(380px 270px at 76% 18%, rgba(242, 82, 32, 0.9) 0%, rgba(242, 82, 32, 0.36) 52%, transparent 84%), radial-gradient(360px 260px at 68% 74%, rgba(242, 82, 32, 0.86) 0%, rgba(242, 82, 32, 0.34) 50%, transparent 83%), radial-gradient(320px 230px at 34% 68%, rgba(242, 82, 32, 0.82) 0%, rgba(242, 82, 32, 0.32) 48%, transparent 82%);
  opacity: 1;
}
.brand-archive-hero__grid::before {
  -webkit-mask-image: repeating-linear-gradient(0deg, #000 0 1px, transparent 1px 64px);
  mask-image: repeating-linear-gradient(0deg, #000 0 1px, transparent 1px 64px);
}
.brand-archive-hero__grid::after {
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 1px, transparent 1px 64px);
  mask-image: repeating-linear-gradient(90deg, #000 0 1px, transparent 1px 64px);
}
@supports (mask-image: radial-gradient(circle at center, #000, transparent)) {
  .brand-archive-hero__grid {
    mask-image: radial-gradient(86% 86% at 50% 45%, #000 0%, transparent 82%);
    -webkit-mask-image: radial-gradient(86% 86% at 50% 45%, #000 0%, transparent 82%);
  }
}
.brand-archive-hero__wave {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.85;
}
.brand-archive-hero__wave--h {
  height: 2px;
  width: 300px;
  left: -320px;
  background: linear-gradient(90deg, transparent, #F25220, transparent);
  animation: brandsHeroWaveH linear infinite;
}
.brand-archive-hero__wave--v {
  width: 2px;
  height: 300px;
  top: -320px;
  background: linear-gradient(180deg, transparent, #F25220, transparent);
  animation: brandsHeroWaveV linear infinite;
  opacity: 0.7;
}
.brand-archive-hero__wave--h:nth-of-type(2) {
  top: 192px;
  animation-duration: 6.5s;
}
.brand-archive-hero__wave--h:nth-of-type(3) {
  top: 384px;
  animation-duration: 9s;
  animation-delay: 1.4s;
}
.brand-archive-hero__wave--h:nth-of-type(4) {
  top: 576px;
  animation-duration: 7.5s;
  animation-delay: 0.6s;
}
.brand-archive-hero__wave--v:nth-of-type(5) {
  left: 18%;
  animation-duration: 8s;
  animation-delay: 0.3s;
}
.brand-archive-hero__wave--v:nth-of-type(6) {
  left: 62%;
  animation-duration: 6s;
  animation-delay: 1.1s;
}
.brand-archive-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 3.6vw, 56px);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .brand-archive-hero__inner {
    grid-template-columns: 1fr;
  }
}
.brand-archive-hero__crumbs {
  margin-bottom: 22px;
}
.brand-archive-hero__crumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.brand-archive-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(29, 29, 29, 0.62);
}
.brand-archive-hero__crumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.brand-archive-hero__crumb a:hover {
  color: #F25220;
}
.brand-archive-hero__crumb.is-active span {
  color: #F25220;
}
.brand-archive-hero__crumb-sep {
  opacity: 0.6;
}
.brand-archive-hero__title {
  margin: 0;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.99;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1D1D1D;
}
.brand-archive-hero__title em {
  color: #F25220;
  font-style: normal;
}
.brand-archive-hero__title-line {
  display: block;
}
.brand-archive-hero__lede {
  margin-top: 24px;
  max-width: 48ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.62);
}
.brand-archive-hero__cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.brand-archive-hero__tags {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.brand-archive-hero__tag {
  font-size: 13px;
  color: rgba(29, 29, 29, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand-archive-hero__tag b {
  color: #1D1D1D;
  font-weight: 700;
}
.brand-archive-hero__tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F25220;
}
.brand-archive-hero__visual {
  position: relative;
  height: clamp(400px, 45vw, 580px);
}
@media screen and (max-width: 768px) {
  .brand-archive-hero__visual {
    height: 330px;
    margin-top: 10px;
  }
}
.brand-archive-hero__img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f1f1;
  box-shadow: 0 30px 70px -28px rgba(29, 29, 29, 0.35);
}
.brand-archive-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-archive-hero__img--main {
  inset: 0 0 48px 42px;
  animation: brandsHeroFloaty 6s ease-in-out infinite;
}
.brand-archive-hero__img--sub {
  width: 210px;
  height: 240px;
  left: 0;
  bottom: 0;
  border: 6px solid #FFFFFF;
  animation: brandsHeroFloaty 6s ease-in-out infinite 0.8s;
}
.brand-archive-hero__badge {
  position: absolute;
  top: 24px;
  left: -24px;
  z-index: 3;
  background: #FFFFFF;
  border: 1px solid rgba(29, 29, 29, 0.1);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 20px 50px -20px rgba(29, 29, 29, 0.3);
  animation: brandsHeroFloaty 5s ease-in-out infinite 0.4s;
}
.brand-archive-hero__badge b {
  display: block;
  font-size: 22px;
  color: #1D1D1D;
  line-height: 1;
}
.brand-archive-hero__stars {
  margin-top: 6px;
  color: #F25220;
  font-size: 12px;
  letter-spacing: 2px;
}
.brand-archive-hero__badge-sources {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-archive-hero__badge-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.brand-archive-hero__badge-source svg {
  width: auto;
  height: 14px;
}
.brand-archive-hero__badge-source small {
  display: block;
  color: rgba(29, 29, 29, 0.62);
  font-size: 11px;
  line-height: 1;
  margin: 0;
}

@keyframes brandsHeroWaveH {
  from {
    left: -320px;
  }
  to {
    left: 110%;
  }
}
@keyframes brandsHeroWaveV {
  from {
    top: -320px;
  }
  to {
    top: 110%;
  }
}
@keyframes brandsHeroFloaty {
  50% {
    transform: translateY(-12px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-archive-hero__wave,
  .brand-archive-hero__img--main,
  .brand-archive-hero__img--sub,
  .brand-archive-hero__badge {
    animation: none !important;
  }
}
/* ==========================================================
   Brand list — card grid with dark-inversion hover
   (mirrors .system-choice-card "Choosing your system" hover)
   ========================================================== */
.brand-list-section {
  position: relative;
  padding: 0 0 80px;
  overflow: hidden;
}
.brand-list-section::before {
  content: "";
  position: absolute;
  top: -8%;
  right: -6%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 82, 32, 0.08), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.brand-list-section > .container {
  position: relative;
  z-index: 1;
}

.brand-list-section__head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .brand-list-section__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.brand-list-section__title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.brand-list-section__desc {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #757575;
}

.brand-list-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) {
  .brand-list-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .brand-list-section__grid {
    grid-template-columns: 1fr;
  }
}

.brand-list-section__grid .brand-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  border-radius: 16px;
  border: 1px solid rgba(29, 29, 29, 0.08);
  box-shadow: 0 1px 2px rgba(29, 29, 29, 0.04), 0 14px 30px -22px rgba(29, 29, 29, 0.2);
  text-decoration: none;
  overflow: hidden;
  --mx: 50%;
  --my: 0%;
  transition: opacity var(--animate-duration) ease-out var(--animate-delay), transform calc(var(--animate-duration) + 0.1s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--animate-delay), translate 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.45s ease;
}
.brand-list-section__grid .brand-card > *:not(.brand-card__glow) {
  position: relative;
  z-index: 1;
}
.brand-list-section__grid .brand-card__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx) var(--my), rgba(242, 82, 32, 0.22), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
@media (hover: hover) {
  .brand-list-section__grid .brand-card:hover {
    background: linear-gradient(135deg, rgba(25, 156, 168, 0.3) 0%, transparent 52%), #1D1D1D;
    border-color: #1D1D1D;
    color: #FFFFFF;
    translate: 0 -6px;
    box-shadow: 0 30px 60px -24px rgba(29, 29, 29, 0.55), 0 8px 20px -12px rgba(29, 29, 29, 0.35);
  }
  .brand-list-section__grid .brand-card:hover .brand-card__glow {
    opacity: 1;
  }
  .brand-list-section__grid .brand-card:hover .brand-card__name {
    color: #FFFFFF;
  }
  .brand-list-section__grid .brand-card:hover .brand-card__rank {
    background: rgba(242, 82, 32, 0.95);
    color: #FFFFFF;
  }
  .brand-list-section__grid .brand-card:hover .brand-card__desc {
    color: rgba(255, 255, 255, 0.78);
  }
  .brand-list-section__grid .brand-card:hover .brand-card__tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
    color: #FFFFFF;
  }
  .brand-list-section__grid .brand-card:hover .brand-card__link {
    color: #FFFFFF;
  }
  .brand-list-section__grid .brand-card:hover .brand-card__link svg {
    transform: translateX(4px);
  }
  .brand-list-section__grid .brand-card:hover .brand-card__attrs {
    border-top-color: rgba(255, 255, 255, 0.18);
  }
  .brand-list-section__grid .brand-card:hover .brand-card__attr {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }
  .brand-list-section__grid .brand-card:hover .brand-card__attr dt {
    color: rgba(242, 82, 32, 0.95);
  }
  .brand-list-section__grid .brand-card:hover .brand-card__attr dd {
    color: #FFFFFF;
  }
  .brand-list-section__grid .brand-card:hover .brand-card__logo {
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }
}
.brand-list-section__grid .brand-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-list-section__grid .brand-card__head-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.brand-list-section__grid .brand-card__logo {
  height: 38px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 0;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.brand-list-section__grid .brand-card__name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
  color: #1D1D1D;
  transition: color 0.4s ease;
}
.brand-list-section__grid .brand-card__rank {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #F25220;
  padding: 3px 9px;
  border-radius: 999px;
  margin-top: 8px;
  transition: background-color 0.4s ease, color 0.4s ease;
}
.brand-list-section__grid .brand-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #757575;
  margin: 0;
  transition: color 0.4s ease;
}
.brand-list-section__grid .brand-card__desc strong {
  color: inherit;
  font-weight: 600;
}
.brand-list-section__grid .brand-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.brand-list-section__grid .brand-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f1f1;
  border: 1px solid transparent;
  color: #757575;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}
.brand-list-section__grid .brand-card__attrs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px dashed rgba(29, 29, 29, 0.1);
  transition: border-color 0.4s ease;
}
.brand-list-section__grid .brand-card__attr {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(29, 29, 29, 0.1);
  transition: border-color 0.4s ease;
}
.brand-list-section__grid .brand-card__attr dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F25220;
  flex-shrink: 0;
  transition: color 0.4s ease;
}
.brand-list-section__grid .brand-card__attr dd {
  font-size: 13px;
  font-weight: 600;
  color: #1D1D1D;
  text-align: right;
  margin: 0;
  transition: color 0.4s ease;
}
.brand-list-section__grid .brand-card__link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: #F25220;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.4s ease;
}
.brand-list-section__grid .brand-card__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .brand-list-section__grid .brand-card:hover {
    translate: none;
  }
}

/* ==========================================================
   Brands by service — 4-col cards
   ========================================================== */
.brand-by-service-section {
  padding: 80px 0;
  background: #F9FAFB;
}

.brand-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) {
  .brand-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .brand-service-grid {
    grid-template-columns: 1fr;
  }
}

.brand-service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  min-height: 200px;
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.08);
  transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}
@media (hover: hover) {
  .brand-service-card:hover {
    background: linear-gradient(135deg, rgba(25, 156, 168, 0.35) 0%, transparent 55%), #1D1D1D;
    border-color: #1D1D1D;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(29, 29, 29, 0.22);
    transform: translateY(-2px);
  }
  .brand-service-card:hover .brand-service-card__num {
    color: rgba(255, 255, 255, 0.7);
  }
  .brand-service-card:hover .brand-service-card__title {
    color: #FFFFFF;
  }
  .brand-service-card:hover .brand-service-card__desc {
    color: rgba(255, 255, 255, 0.75);
  }
  .brand-service-card:hover .brand-service-card__brands {
    color: #FFFFFF;
    border-top-color: rgba(255, 255, 255, 0.2);
  }
}
.brand-service-card .brand-service-card__num {
  font-size: 13px;
  font-weight: 700;
  color: #F25220;
  letter-spacing: 0.06em;
  transition: color 0.28s ease;
}
.brand-service-card .brand-service-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1D1D1D;
  line-height: 1.2;
  transition: color 0.28s ease;
}
.brand-service-card .brand-service-card__desc {
  font-size: 13px;
  color: #757575;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  transition: color 0.28s ease;
}
.brand-service-card .brand-service-card__brands {
  display: block;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 12px;
  color: #1D1D1D;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.28s ease, border-color 0.28s ease;
}

.brand-overview-section {
  padding: 60px 0;
}

.brand-overview {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 1024px) {
  .brand-overview {
    grid-template-columns: 1fr;
  }
}

.brand-overview-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3.36px;
  text-transform: uppercase;
  color: #F25220;
}

.brand-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #1D1D1D;
  margin: 0;
}

.brand-description {
  margin: 0;
  font-size: 16px;
  line-height: 140%;
  color: #1D1D1D;
  opacity: 0.9;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.brand-overview-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.brand-media {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  max-height: 500px;
}

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

@media (max-width: 768px) {
  .brand-overview-section {
    padding: 40px 0;
  }
  .brand-logo img {
    height: 56px;
  }
}
/* ==========================================================
   Brand "Why" section
   ========================================================== */
.brand-why-section {
  padding: 80px 0;
}

.brand-voice-block {
  max-width: 72ch;
  margin: 0 0 48px;
  padding: 22px 28px;
  border-left: 3px solid #F25220;
  background: rgba(242, 82, 32, 0.03);
  border-radius: 0 8px 8px 0;
}
.brand-voice-block p {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: #1D1D1D;
}

.brand-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  .brand-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .brand-why-grid {
    grid-template-columns: 1fr;
  }
}

.brand-why-item {
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.brand-why-item:nth-child(odd) .brand-why-item__num {
  color: #F25220;
}
.brand-why-item:nth-child(even) .brand-why-item__num {
  color: #199CA8;
}
.brand-why-item .brand-why-item__num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.brand-why-item .brand-why-item__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: #1D1D1D;
  line-height: 1.2;
}
.brand-why-item .brand-why-item__desc {
  font-size: 13px;
  line-height: 1.55;
  color: #757575;
  margin: 0;
}

/* ==========================================================
   Brand specs table
   ========================================================== */
.brand-specs-section {
  padding: 80px 0;
  background: #F9FAFB;
}

.brand-specs-head {
  margin-bottom: 32px;
}

.brand-specs-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.brand-specs-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.15s ease;
}
.brand-specs-table tr:hover {
  background: rgba(255, 255, 255, 0.7);
}
.brand-specs-table th {
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #757575;
  width: 30%;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .brand-specs-table th {
    display: block;
    width: 100%;
    padding-bottom: 4px;
  }
}
.brand-specs-table td {
  padding: 18px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #1D1D1D;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .brand-specs-table td {
    display: block;
    padding-top: 0;
  }
}

.brand-specs-note {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.5;
  color: #757575;
  font-style: italic;
}

/* ==========================================================
   Brand "When to pick" scenarios
   ========================================================== */
.brand-scenarios-section {
  padding: 80px 0;
}

.brand-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .brand-scenarios-grid {
    grid-template-columns: 1fr;
  }
}

.brand-scenarios-grid .brand-scenario-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  border: 1px solid rgba(29, 29, 29, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(29, 29, 29, 0.04), 0 14px 30px -22px rgba(29, 29, 29, 0.2);
  transition: opacity var(--animate-duration) ease-out var(--animate-delay), transform calc(var(--animate-duration) + 0.1s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--animate-delay), translate 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
}
.brand-scenarios-grid .brand-scenario-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (hover: hover) {
  .brand-scenarios-grid .brand-scenario-card:hover {
    translate: 0 -6px;
    box-shadow: 0 28px 50px -26px rgba(29, 29, 29, 0.4), 0 8px 18px -12px rgba(29, 29, 29, 0.18);
  }
  .brand-scenarios-grid .brand-scenario-card:hover::before {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-scenarios-grid .brand-scenario-card:hover {
    translate: none;
  }
}
.brand-scenarios-grid .brand-scenario-card .brand-scenario-card__num {
  font-size: 13px;
  font-weight: 700;
  color: #F25220;
  letter-spacing: 0.06em;
}
.brand-scenarios-grid .brand-scenario-card .brand-scenario-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1D1D1D;
  line-height: 1.2;
}
.brand-scenarios-grid .brand-scenario-card .brand-scenario-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #757575;
  margin: 0;
}

/* ==========================================================
   Brand comparison — 3-col
   ========================================================== */
.brand-comparison-section {
  padding: 80px 0;
  background: #F9FAFB;
}

.brand-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media screen and (max-width: 1280px) {
  .brand-compare-grid {
    grid-template-columns: 1fr;
  }
}

.brand-compare-grid .brand-compare-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  border-radius: 16px;
  border: 1px solid rgba(29, 29, 29, 0.08);
  box-shadow: 0 1px 2px rgba(29, 29, 29, 0.04), 0 14px 30px -22px rgba(29, 29, 29, 0.18);
  transition: opacity var(--animate-duration) ease-out var(--animate-delay), transform calc(var(--animate-duration) + 0.1s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--animate-delay), translate 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
}
.brand-compare-grid .brand-compare-card--current {
  border: 2px solid #F25220;
  box-shadow: 0 18px 44px -18px rgba(242, 82, 32, 0.3);
}
@media (hover: hover) {
  .brand-compare-grid .brand-compare-card:hover {
    translate: 0 -6px;
    box-shadow: 0 28px 50px -26px rgba(29, 29, 29, 0.38);
  }
  .brand-compare-grid .brand-compare-card--current:hover {
    box-shadow: 0 28px 54px -22px rgba(242, 82, 32, 0.4);
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-compare-grid .brand-compare-card:hover {
    translate: none;
  }
}
.brand-compare-grid .brand-compare-card .brand-compare-card__tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f1f1;
  color: #757575;
}
.brand-compare-grid .brand-compare-card .brand-compare-card__tag--current {
  background: #F25220;
  color: #fff;
}
.brand-compare-grid .brand-compare-card .brand-compare-card__name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1D1D1D;
  line-height: 1.2;
}
.brand-compare-grid .brand-compare-card .brand-compare-card__self-note {
  font-size: 12px;
  color: #757575;
  font-style: italic;
  margin-top: auto;
}
.brand-compare-grid .brand-compare-card .brand-compare-card__link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #F25220;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.brand-compare-grid .brand-compare-card .brand-compare-card__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.brand-compare-grid .brand-compare-card .brand-compare-card__link:hover {
  gap: 10px;
}

.brand-compare-attrs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.brand-compare-attrs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.brand-compare-attrs li:last-child {
  border-bottom: none;
}
.brand-compare-attrs strong {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #757575;
  flex-shrink: 0;
}
.brand-compare-attrs span {
  font-size: 12px;
  font-weight: 500;
  color: #1D1D1D;
  text-align: right;
  max-width: 60%;
  line-height: 1.4;
}

.c-who-we-work-with {
  padding: clamp(40px, 6vw, 80px) 0;
}

.c-www-header {
  max-width: 860px;
  margin: 0 auto clamp(20px, 3vw, 40px);
  text-align: center;
}

.c-www-title {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  margin: 0 0 12px;
}

.c-www-subtitle {
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

.c-www-rows {
  display: grid;
  gap: clamp(16px, 3vw, 32px);
}

.c-www-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.4vw, 35px);
}
@media (min-width: 768px) {
  .c-www-row {
    grid-template-columns: 2fr 1fr;
  }
}

@media (min-width: 768px) {
  .c-www-row--b {
    grid-template-columns: 1fr 2fr;
  }
}

.c-www-card {
  display: flex;
  flex-direction: column;
}

.c-www-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.c-www-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-www-card-title {
  margin-top: 20px;
  font-size: clamp(18px, 2.2vw, 24px);
}

.c-www-card-desc {
  max-width: 530px;
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.7);
}

.c-www-image {
  max-height: 424px;
}

.c-www-card--small .c-www-image {
  max-height: 324px;
}

.c-www-card--large .c-www-image {
  max-height: 552px;
}

@media (min-width: 1024px) {
  .c-www-card--large .c-www-image {
    max-height: 552px;
  }
}
/* ==========================================================
   Shared commercial section head
   ========================================================== */
.comm-section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
@media screen and (max-width: 1280px) {
  .comm-section-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
}

.comm-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F25220;
  margin-bottom: 10px;
}
.comm-eyebrow--light {
  color: rgba(242, 82, 32, 0.85);
}

.comm-section-title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.comm-section-title em {
  font-style: italic;
  color: #F25220;
  font-weight: inherit;
}

.comm-section-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #757575;
  margin: 0;
}

/* ==========================================================
   Property types — 6-card grid
   ========================================================== */
.comm-property-section {
  padding: 80px 0;
}

.comm-property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1280px) {
  .comm-property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .comm-property-grid {
    grid-template-columns: 1fr;
  }
}

.comm-property-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid #F25220;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.comm-property-card:nth-child(even) {
  border-top-color: #199CA8;
}
.comm-property-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.14);
}
.comm-property-card .comm-property-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F25220;
}
.comm-property-card:nth-child(even) .comm-property-card__tag {
  color: #199CA8;
}
.comm-property-card .comm-property-card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1D1D1D;
  line-height: 1.2;
}
.comm-property-card .comm-property-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: #757575;
  margin: 0;
  flex: 1;
}
.comm-property-card .comm-property-card__systems {
  display: block;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1D1D1D;
}

/* ==========================================================
   Commercial systems — inner-border grid
   ========================================================== */
.comm-systems-section {
  padding: 80px 0;
  background: #F9FAFB;
}

.comm-systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1280px) {
  .comm-systems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .comm-systems-grid {
    grid-template-columns: 1fr;
  }
}

.comm-system-item {
  background: #fff;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.comm-system-item:hover {
  background: #fafafa;
}
.comm-system-item--link:hover {
  background: #F9FAFB;
}
.comm-system-item--link:hover .comm-system-item__cta {
  gap: 10px;
}
.comm-system-item .comm-system-item__cta {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #F25220;
  transition: gap 0.2s ease;
}
.comm-system-item .comm-system-item__cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.comm-system-item .comm-system-item__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #F25220;
}
.comm-system-item .comm-system-item__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1D1D1D;
  line-height: 1.2;
}
.comm-system-item .comm-system-item__desc {
  font-size: 13px;
  line-height: 1.55;
  color: #757575;
  margin: 0;
  flex: 1;
}
.comm-system-item .comm-system-item__meta {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1D1D1D;
}

/* ==========================================================
   Local Law 97 — dark section
   ========================================================== */
.comm-ll97-section {
  padding: 96px 0;
  background: #fff;
}

.comm-ll97-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media screen and (max-width: 1280px) {
  .comm-ll97-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
}

.comm-ll97-title {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: #1D1D1D;
}
.comm-ll97-title em {
  font-style: italic;
  color: #F25220;
  font-weight: inherit;
}

.comm-ll97-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #757575;
  margin: 0;
}

.comm-ll97-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media screen and (max-width: 1280px) {
  .comm-ll97-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .comm-ll97-grid {
    grid-template-columns: 1fr;
  }
}

.comm-ll97-item {
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.comm-ll97-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.12);
}
.comm-ll97-item:nth-child(odd) .comm-ll97-item__num {
  color: #F25220;
}
.comm-ll97-item:nth-child(even) .comm-ll97-item__num {
  color: #199CA8;
}
.comm-ll97-item .comm-ll97-item__num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.comm-ll97-item .comm-ll97-item__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1D1D1D;
  line-height: 1.2;
}
.comm-ll97-item .comm-ll97-item__desc {
  font-size: 13px;
  line-height: 1.55;
  color: #757575;
  margin: 0;
}

.comm-ll97-callout {
  padding: 20px 24px;
  background: rgba(25, 156, 168, 0.05);
  border: 1px solid rgba(25, 156, 168, 0.18);
  border-left: 4px solid #199CA8;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.comm-ll97-callout .comm-ll97-callout__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1D1D1D;
  letter-spacing: -0.01em;
}
.comm-ll97-callout .comm-ll97-callout__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #757575;
  margin: 0;
  max-width: 600px;
}

/* ==========================================================
   Service contracts — 3 tier cards
   ========================================================== */
.comm-contracts-section {
  padding: 80px 0;
  background: #F9FAFB;
}

.comm-contracts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
@media screen and (max-width: 1280px) {
  .comm-contracts-grid {
    grid-template-columns: 1fr;
  }
}

.comm-contract-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.comm-contract-card--featured {
  border: 2px solid #F25220;
  transform: scale(1.02);
  box-shadow: 0 16px 40px -8px rgba(242, 82, 32, 0.18);
}
.comm-contract-card--featured .comm-contract-card__tag {
  background: #F25220;
  color: #fff;
}
.comm-contract-card .comm-contract-card__tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f1f1;
  color: #757575;
}
.comm-contract-card .comm-contract-card__name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1D1D1D;
  line-height: 1.2;
}
.comm-contract-card .comm-contract-card__target {
  font-size: 13px;
  line-height: 1.5;
  color: #757575;
  margin: 0;
  font-style: italic;
}
.comm-contract-card .comm-contract-card__features {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  flex: 1;
}
.comm-contract-card .comm-contract-card__features li {
  font-size: 13px;
  line-height: 1.5;
  color: #1D1D1D;
  padding-left: 20px;
  position: relative;
}
.comm-contract-card .comm-contract-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 7px;
  border-left: 2px solid #F25220;
  border-bottom: 2px solid #F25220;
  transform: rotate(-45deg);
}
.comm-contract-card .comm-contract-card__pricing {
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  font-size: 12px;
  color: #757575;
  font-style: italic;
  margin: 0;
}

/* ==========================================================
   PM workflow — horizontal process list
   ========================================================== */
.comm-pm-section {
  padding: 80px 0;
}

.comm-pm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.comm-pm-item {
  display: grid;
  grid-template-columns: 72px 1fr 2fr;
  gap: 32px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  .comm-pm-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .comm-pm-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
}
.comm-pm-item .comm-pm-item__num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #F25220;
  letter-spacing: -0.02em;
}
.comm-pm-item .comm-pm-item__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1D1D1D;
  line-height: 1.2;
}
.comm-pm-item .comm-pm-item__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #757575;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  .comm-pm-item .comm-pm-item__desc {
    grid-column: 2;
  }
}
@media screen and (max-width: 768px) {
  .comm-pm-item .comm-pm-item__desc {
    grid-column: 1;
  }
}

/* ==========================================================
   Commercial brands mini-grid
   ========================================================== */
.comm-brands-section {
  padding: 80px 0;
  background: #F9FAFB;
}
.comm-brands-section__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 48px;
}
@media screen and (max-width: 1280px) {
  .comm-brands-section__head {
    margin-bottom: 32px;
  }
}
.comm-brands-section__title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.comm-brands-section__title-accent {
  color: #F25220;
  font-style: normal;
  font-weight: inherit;
}
.comm-brands-section__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #757575;
  margin: 0;
  max-width: 56ch;
}

.comm-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1280px) {
  .comm-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .comm-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comm-brand-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.comm-brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.14);
}
.comm-brand-card:hover .comm-brand-card__logo-img {
  filter: grayscale(0%);
  opacity: 1;
}
.comm-brand-card:hover .comm-brand-card__cta {
  gap: 10px;
  color: #F25220;
}
.comm-brand-card .comm-brand-card__logo-wrap {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  background: #F9FAFB;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.comm-brand-card .comm-brand-card__logo-img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.comm-brand-card .comm-brand-card__logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1D1D1D;
  opacity: 0.4;
}
.comm-brand-card .comm-brand-card__body {
  padding: 18px 20px 12px;
  flex: 1;
}
.comm-brand-card .comm-brand-card__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: #1D1D1D;
  line-height: 1.2;
}
.comm-brand-card .comm-brand-card__desc {
  font-size: 12px;
  line-height: 1.5;
  color: #757575;
  margin: 0;
}
.comm-brand-card .comm-brand-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #757575;
  transition: gap 0.2s ease, color 0.2s ease;
}
.comm-brand-card .comm-brand-card__cta svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

#service-contracts-overview .sc-intro {
  max-width: 1000px;
  margin: 0 auto 40px auto;
  text-align: center;
}
#service-contracts-overview .sc-intro .component-title--large {
  font-size: 45.6px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  #service-contracts-overview .sc-intro .component-title--large {
    font-size: 24px;
  }
}
#service-contracts-overview .sc-intro .component-desc {
  font-size: 18px;
  color: #757575;
}
@media screen and (max-width: 768px) {
  #service-contracts-overview .sc-intro .component-desc {
    font-size: 14px;
  }
}
#service-contracts-overview .sc-row {
  display: flex;
  gap: 30px;
}
#service-contracts-overview .sc-row .sc-block:first-child {
  padding-top: 60px;
}
#service-contracts-overview .sc-row .sc-block:last-child {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #service-contracts-overview .sc-row {
    flex-direction: column;
  }
}
#service-contracts-overview .sc-block {
  display: flex;
  flex-direction: column;
  gap: 55px;
}
#service-contracts-overview .sc-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#service-contracts-overview .sc-card--text .sc-eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  color: #757575;
  margin-bottom: 20px;
}
#service-contracts-overview .sc-card--text .component-title {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 70px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #service-contracts-overview .sc-card--text .component-title {
    font-size: 24px;
  }
}
#service-contracts-overview .sc-card--text .component-desc {
  color: #000000;
}
@media screen and (max-width: 768px) {
  #service-contracts-overview .sc-card--text .component-desc {
    font-size: 14px;
  }
}
#service-contracts-overview .sc-card--image {
  height: 581px;
}
#service-contracts-overview .sc-card--image .sc-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
#service-contracts-overview .sc-card--image .sc-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-faq .faq-page__container {
  padding-top: 60px;
}
.page-faq .faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(16px, 3vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-faq .faq-layout {
    grid-template-columns: 1fr;
  }
}
.page-faq {
  /* Sidebar */
}
.page-faq .faq-sidebar {
  position: sticky;
  top: 98px;
  align-self: start;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  .page-faq .faq-sidebar {
    position: static;
  }
}
.page-faq .faq-sidebar__title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
  color: #1D1D1D;
}
.page-faq .faq-categories {
  display: grid;
  gap: 8px;
}
.page-faq .faq-categories .faq-category-btn {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1D1D1D;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 15px;
  transition: 0.2s ease all;
  cursor: pointer;
}
.page-faq .faq-categories .faq-category-btn:hover {
  border-color: #F25220;
}
.page-faq .faq-categories .faq-category-btn.active {
  border-color: transparent;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(242, 82, 32, 0.18);
}
.page-faq .faq-search {
  top: 98px;
  z-index: 5;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .page-faq .faq-search {
    position: static;
  }
}
.page-faq .faq-search input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: 0.2s ease all;
}
.page-faq .faq-search input:focus {
  border-color: #199CA8;
  box-shadow: 0 0 0 3px rgba(25, 156, 168, 0.12);
}
.page-faq {
  /* Items */
}
.page-faq .faq-items {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
.page-faq .faq-item {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: 0.2s ease box-shadow, 0.2s ease border-color, 0.2s ease transform;
}
.page-faq .faq-item.is-hidden {
  display: none;
}
.page-faq .faq-item.is-open {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}
.page-faq .faq-toggle {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: clamp(14px, 2vw, 18px) clamp(14px, 2vw, 20px);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
  border: none;
  cursor: pointer;
  color: #1D1D1D;
  font-weight: 600;
  font-size: 16px;
}
.page-faq .faq-toggle .faq-q {
  margin-right: 8px;
}
.page-faq .faq-toggle .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.2s ease all;
}
.page-faq .faq-toggle .faq-icon::before,
.page-faq .faq-toggle .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #1D1D1D;
  transform: translate(-50%, -50%);
  transition: 0.2s ease all;
}
.page-faq .faq-toggle .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.page-faq .faq-toggle[aria-expanded=true] .faq-icon::after {
  opacity: 0;
}
.page-faq .faq-toggle[aria-expanded=true] .faq-icon {
  border-color: #F25220;
  box-shadow: 0 6px 18px rgba(242, 82, 32, 0.18);
}
.page-faq .faq-panel {
  padding: 0 clamp(14px, 2vw, 20px) clamp(14px, 2vw, 20px) clamp(14px, 2vw, 20px);
}
.page-faq .faq-a {
  padding-top: 6px;
  color: #1D1D1D;
  line-height: 140%;
}
.page-faq .faq-item--skeleton {
  pointer-events: none;
  cursor: default;
}
.page-faq .faq-item--skeleton .faq-toggle {
  cursor: default;
}

.about-hero {
  padding: clamp(20px, 4vw, 48px) 0; /* tighter spacing */
}
.about-hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about-hero__container {
    grid-template-columns: 1fr;
  }
}
.about-hero .eyebrow {
  color: #199CA8;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-hero__title {
  font-size: clamp(32px, 6vw, 48px);
  margin: 0 0 12px 0;
  color: #1D1D1D;
  line-height: 120%;
}
.about-hero__lead {
  color: #757575;
  margin-bottom: 18px;
  max-width: 680px;
}
.about-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.about-hero__media .hero-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* Intro split section */
.about-intro-split {
  padding: clamp(40px, 6vw, 80px) 0;
}
.about-intro-split__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about-intro-split__container {
    grid-template-columns: 1fr;
  }
}
.about-intro-split__media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}
.about-intro-split__content h2 {
  margin: 0 0 16px 0;
  font-size: clamp(28px, 4vw, 40px);
  color: #1D1D1D;
}
.about-intro-split__content p {
  color: #757575;
  margin: 0 0 18px 0;
}
.about-intro-split__content .check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.about-intro-split__content .check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}
.about-intro-split__content .check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
}

/* Benefits badges */
.about-benefits {
  padding: clamp(20px, 4vw, 48px) 0; /* tighter section */
}
.about-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
@media screen and (max-width: 1280px) {
  .about-benefits .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .about-benefits .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.about-benefits .benefit-item {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease box-shadow, 0.2s ease transform;
}
.about-benefits .benefit-item:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.about-benefits .benefit-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.about-benefits .benefit-title {
  font-weight: 800;
  color: #1D1D1D;
  font-size: 18px;
}
.about-benefits .benefit-desc {
  font-size: 15px;
  line-height: 140%;
  color: #757575;
}

/* Timeline */
.about-timeline .timeline {
  counter-reset: about-timeline;
}
.about-timeline .timeline li {
  list-style: none;
  position: relative;
  padding-left: 40px;
  margin: 14px 0;
}
.about-timeline .timeline li:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #F25220;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(242, 82, 32, 0.25);
}
.about-timeline .timeline-year {
  font-weight: 700;
  margin-bottom: 4px;
}
.about-timeline .timeline-content {
  color: #757575;
}
.about-timeline .timeline-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}
.about-timeline .timeline-progress {
  position: relative;
  width: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-left: 16px;
}
.about-timeline .timeline-progress:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  transform-origin: top;
  transform: scaleY(var(--line-progress, 0));
  transition: 0.15s linear;
}
@media (max-width: 768px) {
  .about-timeline .timeline-wrap {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }
  .about-timeline .timeline-progress {
    width: 6px;
    margin-left: 8px;
  }
  .about-timeline .timeline li {
    padding-left: 32px;
  }
  .about-timeline .timeline li:before {
    left: 4px;
  }
}

/* Team grid adjustments */
.about-team .team-grid {
  margin-top: 12px;
}
.about-team .team-member {
  position: relative;
  overflow: hidden;
}
.about-team .team-member img {
  transition: 0.2s ease transform;
}
.about-team .team-member:hover img {
  transform: scale(1.05);
}

/* CTA */
.about-cta .cta-card {
  position: relative;
  overflow: hidden;
}
.about-cta .cta-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(25, 156, 168, 0.15), rgba(242, 82, 32, 0.12));
  opacity: 0.4;
}
.about-cta .cta-card > * {
  position: relative;
}

/* Logos section */
.about-logos {
  padding: 16px 0; /* tighter */
}
.about-logos .logos-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.about-logos .logos-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: 10px 0;
  animation: logos-marquee 30s linear infinite;
  will-change: transform;
}
.about-logos .logos-track img {
  max-height: 44px;
  width: auto;
  height: auto;
  opacity: 0.9;
  filter: grayscale(40%);
  transition: 0.2s ease all;
}
.about-logos .logos-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-1px);
}

@keyframes logos-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.about-mission {
  padding: 24px 0; /* tighter */
}
.about-mission .section-title {
  margin-bottom: 12px;
}
.about-mission__text {
  max-width: 900px;
  color: #1D1D1D;
}

/* Trust */
.about-trust {
  padding: clamp(24px, 6vw, 64px) 0;
}
.about-trust .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.6vw, 28px);
}
@media screen and (max-width: 1280px) {
  .about-trust .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .about-trust .trust-grid {
    grid-template-columns: 1fr;
  }
}
.about-trust .trust-item {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: 0.2s ease transform, 0.2s ease box-shadow;
}
.about-trust .trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.about-trust .trust-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.about-trust .trust-item h3 {
  margin: 0 0 6px 0;
  color: #1D1D1D;
  font-size: 18px;
}
.about-trust .trust-item p {
  margin: 0;
  color: #757575;
}

/* Licenses */
.about-licenses {
  padding: clamp(24px, 6vw, 64px) 0;
}
.about-licenses .licenses-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
@media screen and (max-width: 1280px) {
  .about-licenses .licenses-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .about-licenses .licenses-list {
    grid-template-columns: 1fr;
  }
}
.about-licenses .licenses-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 14px;
}
.about-licenses .licenses-list img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Process */
.about-process {
  padding: clamp(24px, 6vw, 64px) 0;
}
.about-process .process-steps {
  counter-reset: proc;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.about-process .process-steps > li {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 14px 16px 14px 44px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.about-process .process-steps > li:before {
  counter-increment: proc;
  content: counter(proc);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #FFFFFF;
  background: linear-gradient(90deg, #199CA8 0%, #28CFD7 100%);
  box-shadow: 0 0 0 4px rgba(25, 156, 168, 0.18);
}
.about-process .process-steps h3 {
  margin: 0 0 4px 0;
  color: #1D1D1D;
  font-size: 18px;
}
.about-process .process-steps p {
  margin: 0;
  color: #757575;
}

/* Guarantees */
.about-guarantees {
  padding: clamp(24px, 6vw, 64px) 0;
}
.about-guarantees .guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.6vw, 28px);
}
@media screen and (max-width: 1280px) {
  .about-guarantees .guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .about-guarantees .guarantees-grid {
    grid-template-columns: 1fr;
  }
}
.about-guarantees .guarantee-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: 0.2s ease transform, 0.2s ease box-shadow;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-guarantees .guarantee-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.about-guarantees .guarantee-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.about-guarantees .guarantee-card h3 {
  margin: 0;
  color: #1D1D1D;
  font-size: 18px;
}
.about-guarantees .guarantee-card p {
  margin: 0;
  color: #757575;
}

/* Values (text blocks) */
.about-values {
  padding: clamp(24px, 6vw, 64px) 0;
}
.about-values .values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 22px) clamp(18px, 3vw, 28px);
  margin: 0;
}
@media screen and (max-width: 1280px) {
  .about-values .values-list {
    grid-template-columns: 1fr;
  }
}
.about-values .value-row {
  display: block;
  border-left: 3px solid #199CA8;
  padding-left: 14px;
}
.about-values .values-list dt {
  margin: 0 0 6px 0;
  font-weight: 800;
  color: #1D1D1D;
  font-size: 18px;
}
.about-values .values-list dd {
  margin: 0;
  color: #757575;
}

/* Culture */
.about-culture {
  padding: clamp(24px, 6vw, 64px) 0;
}
.about-culture__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about-culture__container {
    grid-template-columns: 1fr;
  }
}
.about-culture__media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}
.about-culture__content h2 {
  margin: 0 0 12px 0;
  font-size: clamp(28px, 4vw, 40px);
  color: #1D1D1D;
}
.about-culture__content p {
  color: #757575;
  margin: 0 0 12px 0;
}
.about-culture .bullet-list {
  margin: 0;
  padding-left: 18px;
  color: #1D1D1D;
}

/* Awards */
.about-awards {
  padding: clamp(16px, 5vw, 48px) 0;
}
.about-awards .awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
}
@media screen and (max-width: 1280px) {
  .about-awards .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .about-awards .awards-grid {
    grid-template-columns: 1fr;
  }
}
.about-awards .award-badge {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}
.about-awards .award-year {
  font-weight: 800;
  color: #199CA8;
}
.about-awards .award-name {
  color: #1D1D1D;
}

/* Quote */
.about-quote {
  padding: clamp(16px, 5vw, 48px) 0;
}
.about-quote blockquote {
  margin: 0;
  padding: clamp(16px, 3vw, 28px);
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(25, 156, 168, 0.1), rgba(242, 82, 32, 0.08));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.about-quote blockquote p {
  margin: 0 0 8px 0;
  font-size: clamp(18px, 3vw, 22px);
  color: #1D1D1D;
  font-weight: 700;
}
.about-quote blockquote footer {
  color: #757575;
}

.about-stats {
  padding: 20px 0; /* tighter */
}
.about-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media screen and (max-width: 1280px) {
  .about-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-stats .stats-grid .stat-item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.about-stats .stats-grid .stat-item .stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #F25220;
}
.about-stats .stats-grid .stat-item .stat-label {
  color: #757575;
  margin-top: 6px;
}

.about-team {
  padding: 24px 0; /* tighter */
}
.about-team .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .about-team .team-grid {
    grid-template-columns: 1fr;
  }
}
.about-team .team-grid .team-member {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.about-team .team-grid .team-member img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.about-team .team-grid .team-member .member-name {
  font-weight: 700;
  margin-top: 10px;
}
.about-team .team-grid .team-member .member-role {
  color: #757575;
  font-size: 14px;
}

.about-timeline {
  padding: 24px 0; /* tighter */
}
.about-timeline .timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.about-timeline .timeline-year {
  font-weight: 800;
  color: #1D1D1D;
}
.about-timeline .timeline-content {
  color: #757575;
}

.about-cta {
  padding: 24px 0; /* tighter */
}
.about-cta .cta-card {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(25, 156, 168, 0.06), rgba(242, 82, 32, 0.04));
}
@media screen and (max-width: 768px) {
  .about-cta .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-cta .cta-card h3 {
  margin: 0 0 6px 0;
}
.about-cta .cta-card p {
  margin: 0 0 6px 0;
  color: #1D1D1D;
}
.about-cta .cta-card .cta-actions {
  display: flex;
  gap: 12px;
}

/* Who we are */
.about-story-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 5vw, 60px);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about-story-section__grid {
    grid-template-columns: 1fr;
  }
}
.about-story-section__title {
  margin: 16px 0 18px;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #1D1D1D;
}
.about-story-section__title em {
  font-style: italic;
  color: #F25220;
}
.about-story-section__copy p {
  margin: 0 0 15px;
  color: rgba(29, 29, 29, 0.62);
  font-size: 16px;
  line-height: 1.7;
}
.about-story-section__copy p strong {
  color: #1D1D1D;
  font-weight: 600;
}
.about-story-section__quote {
  margin: 24px 0 0;
  padding: 24px 28px;
  background: rgba(242, 82, 32, 0.08);
  border-radius: 16px;
  border-left: 3px solid #F25220;
}
.about-story-section__quote p {
  margin: 0;
  font-size: 16.5px;
  color: #1D1D1D;
  font-style: italic;
  line-height: 1.6;
}
.about-story-section__quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 13px;
  color: rgba(29, 29, 29, 0.55);
  font-weight: 600;
}
.about-story-section__visual {
  position: relative;
  height: clamp(420px, 42vw, 560px);
}
.about-story-section__est {
  position: absolute;
  top: 30px;
  right: -14px;
  z-index: 3;
  background: #1D1D1D;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 24px 50px -26px rgba(29, 29, 29, 0.5);
}
.about-story-section__est b {
  display: block;
  font-size: 24px;
  color: #ff7a4d;
  font-weight: 700;
  line-height: 1;
}
.about-story-section__est small {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  color: #c8c8d0;
}
.about-story-section__img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px -28px rgba(29, 29, 29, 0.35);
}
.about-story-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-story-section__img--main {
  inset: 0 0 64px 64px;
}
.about-story-section__img--sub {
  left: 0;
  bottom: 0;
  width: 210px;
  height: 240px;
  border: 6px solid #FFFFFF;
}
@media screen and (max-width: 768px) {
  .about-story-section__img--sub {
    width: 160px;
    height: 170px;
  }
}

/* Stats band */
.about-stats-band {
  position: relative;
  overflow: hidden;
  background: #0c0c0e;
  color: #FFFFFF;
}
.about-stats-band__glow {
  position: absolute;
  left: 50%;
  top: -30%;
  transform: translateX(-50%);
  width: 60%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 82, 32, 0.22), transparent 60%);
  pointer-events: none;
}
.about-stats-band__grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(90% 80% at 50% 50%, #000, transparent 88%);
  pointer-events: none;
}
.about-stats-band__row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 70px 0;
}
@media screen and (max-width: 760px) {
  .about-stats-band__row {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
}
.about-stats-band__item {
  text-align: center;
}
.about-stats-band__item b {
  display: block;
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 700;
  color: #F25220;
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-stats-band__item small {
  display: block;
  margin-top: 12px;
  color: #c4c4ce;
  font-size: 14px;
  font-weight: 600;
}
.about-stats-band__divider {
  display: block;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 14px auto 0;
}
.about-stats-band__desc {
  margin: 10px auto 0;
  max-width: 24ch;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

/* Expertise */
.about-expertise-section {
  position: relative;
  overflow: hidden;
  background: #0c0c0e;
  color: #FFFFFF;
}
.about-expertise-section__glow {
  position: absolute;
  right: -6%;
  top: 6%;
  width: 46%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 82, 32, 0.32), transparent 65%);
  filter: blur(16px);
  pointer-events: none;
}
.about-expertise-section__grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(90% 80% at 70% 30%, #000, transparent 88%);
  pointer-events: none;
}
.about-expertise-section__inner {
  position: relative;
  z-index: 2;
}
.about-expertise-section__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .about-expertise-section__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.about-expertise-section__title {
  margin: 16px 0 0;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.about-expertise-section__title em {
  font-style: italic;
  color: #ff7a4d;
}
.about-expertise-section__lead {
  margin-top: 16px;
  color: #c4c4ce;
  font-size: 16px;
  line-height: 1.65;
  max-width: 46ch;
}
.about-expertise-section__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  justify-content: flex-start;
}
.about-expertise-section__badge {
  font-size: 12.5px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  color: #dcdce4;
}
.about-expertise-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.about-expertise-section__list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15px;
  color: #e6e6ec;
}
.about-expertise-section__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #F25220;
  color: #F25220;
  display: grid;
  place-items: center;
  font-size: 12px;
  flex: 0 0 auto;
  margin-top: 1px;
}
.about-expertise-section__brands {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 40px;
}
.about-expertise-section__brands-label {
  margin: 0 0 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  text-align: left;
}
.about-expertise-section__brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}
.about-expertise-section__brand {
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.about-expertise-section__brand:hover {
  border-color: #F25220;
  transform: translateY(-3px);
  background: rgba(242, 82, 32, 0.1);
}

.page-about > .page-section,
.page-meet-our-team > .page-section,
.page-why-choose-us > .page-section {
  padding-bottom: clamp(48px, 6vw, 72px);
}
.page-about > .hero-section + .page-section,
.page-about > .hero-section + .about-stats-band + .page-section,
.page-meet-our-team > .hero-section + .page-section,
.page-meet-our-team > .hero-section + .about-stats-band + .page-section,
.page-why-choose-us > .hero-section + .page-section,
.page-why-choose-us > .hero-section + .about-stats-band + .page-section {
  padding-top: clamp(72px, 9vw, 104px);
}
.page-about > .about-story-section,
.page-about > .team-promise-section,
.page-meet-our-team > .about-story-section,
.page-meet-our-team > .team-promise-section,
.page-why-choose-us > .about-story-section,
.page-why-choose-us > .team-promise-section {
  padding-bottom: clamp(56px, 7vw, 88px);
}
.page-about > .about-stats-band .about-stats-band__row,
.page-meet-our-team > .about-stats-band .about-stats-band__row,
.page-why-choose-us > .about-stats-band .about-stats-band__row {
  padding: clamp(80px, 9vw, 104px) 0;
}
.page-about > .about-stats-band + .page-section,
.page-meet-our-team > .about-stats-band + .page-section,
.page-why-choose-us > .about-stats-band + .page-section {
  padding-top: clamp(88px, 10vw, 120px);
}
.page-about > .about-stats-band + .trust-values-section,
.page-about > .home-values-alt-section + .trust-values-section,
.page-meet-our-team > .about-stats-band + .trust-values-section,
.page-meet-our-team > .home-values-alt-section + .trust-values-section,
.page-why-choose-us > .about-stats-band + .trust-values-section,
.page-why-choose-us > .home-values-alt-section + .trust-values-section {
  padding-top: clamp(96px, 11vw, 128px);
}
.page-about > .trust-values-section + .dual-process-section,
.page-about > .home-values-alt-section + .dual-process-section,
.page-meet-our-team > .trust-values-section + .dual-process-section,
.page-meet-our-team > .home-values-alt-section + .dual-process-section,
.page-why-choose-us > .trust-values-section + .dual-process-section,
.page-why-choose-us > .home-values-alt-section + .dual-process-section {
  padding-top: clamp(88px, 10vw, 120px);
}
.page-about > .dual-process-section + .about-expertise-section,
.page-meet-our-team > .dual-process-section + .about-expertise-section,
.page-why-choose-us > .dual-process-section + .about-expertise-section {
  padding-top: clamp(96px, 11vw, 128px);
}
.page-about > .about-expertise-section,
.page-meet-our-team > .about-expertise-section,
.page-why-choose-us > .about-expertise-section {
  padding-bottom: clamp(80px, 9vw, 112px);
}
.page-about > .about-expertise-section + .testimonials-marquee-section,
.page-about > .team-promise-section + .testimonials-marquee-section,
.page-about > .dual-process-section + .testimonials-marquee-section,
.page-about > .testimonials-marquee-section,
.page-meet-our-team > .about-expertise-section + .testimonials-marquee-section,
.page-meet-our-team > .team-promise-section + .testimonials-marquee-section,
.page-meet-our-team > .dual-process-section + .testimonials-marquee-section,
.page-meet-our-team > .testimonials-marquee-section,
.page-why-choose-us > .about-expertise-section + .testimonials-marquee-section,
.page-why-choose-us > .team-promise-section + .testimonials-marquee-section,
.page-why-choose-us > .dual-process-section + .testimonials-marquee-section,
.page-why-choose-us > .testimonials-marquee-section {
  margin-top: 0;
}
.page-about > .about-expertise-section + .testimonials-marquee-section,
.page-about > .team-promise-section + .testimonials-marquee-section,
.page-about > .dual-process-section + .testimonials-marquee-section,
.page-meet-our-team > .about-expertise-section + .testimonials-marquee-section,
.page-meet-our-team > .team-promise-section + .testimonials-marquee-section,
.page-meet-our-team > .dual-process-section + .testimonials-marquee-section,
.page-why-choose-us > .about-expertise-section + .testimonials-marquee-section,
.page-why-choose-us > .team-promise-section + .testimonials-marquee-section,
.page-why-choose-us > .dual-process-section + .testimonials-marquee-section {
  padding-top: clamp(80px, 9vw, 112px);
}
.page-about > .testimonials-marquee-section,
.page-meet-our-team > .testimonials-marquee-section,
.page-why-choose-us > .testimonials-marquee-section {
  padding-bottom: clamp(96px, 11vw, 128px);
}
.page-about > .testimonials-marquee-section + .areas-overview-section,
.page-meet-our-team > .testimonials-marquee-section + .areas-overview-section,
.page-why-choose-us > .testimonials-marquee-section + .areas-overview-section {
  padding-top: clamp(96px, 11vw, 128px);
  padding-bottom: clamp(88px, 10vw, 112px);
}
.page-about > .testimonials-marquee-section + .contact-cta-section,
.page-about > .areas-overview-section + .contact-cta-section,
.page-meet-our-team > .testimonials-marquee-section + .contact-cta-section,
.page-meet-our-team > .areas-overview-section + .contact-cta-section,
.page-why-choose-us > .testimonials-marquee-section + .contact-cta-section,
.page-why-choose-us > .areas-overview-section + .contact-cta-section {
  padding-top: clamp(96px, 11vw, 128px);
}

.page-about > .hero-section + .about-story-section {
  padding-top: clamp(72px, 9vw, 104px);
}
.page-about > .about-stats-band + .trust-values-section {
  padding-top: clamp(96px, 11vw, 128px);
}

.page-meet-our-team .our-team-section {
  padding-top: clamp(88px, 10vw, 120px);
  padding-bottom: clamp(40px, 5vw, 56px);
}
.page-meet-our-team .team-promise-section {
  padding-top: clamp(88px, 10vw, 120px);
}

.page-why-choose-us .home-values-alt-section {
  padding-top: clamp(88px, 10vw, 120px);
}

.page-why-choose-us .home-values-alt-section__header-row {
  align-items: flex-end;
}
.page-why-choose-us .home-values-alt-section__cell {
  border-color: rgba(29, 29, 29, 0.08);
  background: linear-gradient(180deg, #FFFFFF 0%, #fafbfc 100%);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
@media (hover: hover) {
  .page-why-choose-us .home-values-alt-section__cell:hover {
    border-color: rgba(242, 82, 32, 0.35);
    box-shadow: 0 18px 40px -24px rgba(29, 29, 29, 0.22);
    transform: translateY(-3px);
  }
}
.page-why-choose-us .home-values-alt-section__num {
  color: #F25220;
}

.policies-page .policies-layout.page-section {
  padding-top: clamp(32px, 4vw, 56px);
}

.policies-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) 1fr;
  gap: clamp(18px, 3vw, 36px);
}
@media screen and (max-width: 1280px) {
  .policies-layout {
    grid-template-columns: 1fr;
  }
}

.policies-toc {
  position: sticky;
  top: 106px;
  align-self: start;
}
@media screen and (max-width: 768px) {
  .policies-toc {
    position: static;
  }
}
.policies-toc__inner {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(29, 29, 29, 0.07);
  border-radius: 16px;
  padding: clamp(18px, 2.2vw, 22px) clamp(16px, 2vw, 18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 14px 36px rgba(29, 29, 29, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.policies-toc__inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  border-radius: 16px 0 0 16px;
  pointer-events: none;
  z-index: 1;
}
.policies-toc__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 80% at 100% 0%, rgba(25, 156, 168, 0.14) 0%, rgba(25, 156, 168, 0.04) 42%, transparent 68%);
  z-index: 0;
}
.policies-toc__title {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  padding-left: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #199CA8;
  line-height: 1.35;
}
.policies-toc__nav {
  position: relative;
  z-index: 2;
}
.policies-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.policies-toc__item {
  margin: 0;
}
.policies-toc__item.level-3 {
  margin-left: 0;
  padding-left: 10px;
  border-left: 2px solid rgba(29, 29, 29, 0.08);
}
.policies-toc__link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: rgba(29, 29, 29, 0.88);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}
.policies-toc__link::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: rgba(29, 29, 29, 0.22);
}
@media (hover: hover) {
  .policies-toc__link:hover {
    color: #1D1D1D;
    background: rgba(25, 156, 168, 0.07);
    border-color: rgba(25, 156, 168, 0.22);
  }
  .policies-toc__link:hover::before {
    background: #199CA8;
  }
}
.policies-toc__link.active {
  color: #1D1D1D;
  font-weight: 800;
  background: linear-gradient(90deg, rgba(25, 156, 168, 0.14) 0%, rgba(25, 156, 168, 0.04) 100%);
  border-color: rgba(25, 156, 168, 0.28);
  box-shadow: 0 4px 14px rgba(25, 156, 168, 0.12);
}
.policies-toc__link.active::before {
  background: #F25220;
  box-shadow: 0 0 0 3px rgba(242, 82, 32, 0.22);
}
.policies-toc__item.level-3 .policies-toc__link {
  font-size: 14px;
  font-weight: 600;
  padding-block: 8px;
}
.policies-toc__item.level-3 .policies-toc__link.active {
  font-weight: 700;
}

.policies-content {
  background: #FFFFFF;
  border: 1px solid rgba(29, 29, 29, 0.06);
  border-radius: 16px;
  padding: clamp(16px, 3vw, 28px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 14px 36px rgba(29, 29, 29, 0.06);
}
.policies-content h2, .policies-content h3 {
  scroll-margin-top: 98px;
}
.policies-content h2 {
  font-size: clamp(22px, 3.6vw, 28px);
  color: #1D1D1D;
  margin: 18px 0 8px;
  font-weight: 800;
}
.policies-content h3 {
  font-size: clamp(18px, 3vw, 22px);
  color: #1D1D1D;
  margin: 14px 0 6px;
  font-weight: 700;
}
.policies-content p {
  color: #1D1D1D;
  line-height: 140%;
}
.policies-content ul, .policies-content ol {
  padding-left: 20px;
}
.policies-content li {
  margin: 6px 0;
}
.policies-content a {
  color: #199CA8;
  text-decoration: underline;
}
.policies-content blockquote {
  margin: 14px 0;
  padding: 12px 14px;
  border-left: 3px solid #199CA8;
  background: rgba(25, 156, 168, 0.06);
  border-radius: 8px;
}
.policies-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
}
.policies-content th, .policies-content td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.policies-content code, .policies-content pre {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 2px 6px;
}
.policies-content pre {
  padding: 10px;
  overflow: auto;
}

.blog-topics-strip {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(29, 29, 29, 0.08);
  box-shadow: 0 12px 30px -24px rgba(29, 29, 29, 0.12);
}
.blog-topics-strip__shell {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}
.blog-topics-strip__label {
  flex: 0 0 auto;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.45);
}
.blog-topics-strip__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.blog-topics-strip__track::-webkit-scrollbar {
  height: 4px;
}
.blog-topics-strip__pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(29, 29, 29, 0.1);
  border-radius: 100px;
  background: #FFFFFF;
  color: #1D1D1D;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.blog-topics-strip__pill.is-active {
  border-color: transparent;
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  color: #FFFFFF;
}
@media (hover: hover) {
  .blog-topics-strip__pill:hover:not(.is-active) {
    border-color: rgba(242, 82, 32, 0.35);
    transform: translateY(-1px);
  }
}
.blog-topics-strip__count {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .blog-topics-strip__shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-blog > .hero-section + .blog-topics-strip {
  padding-top: clamp(56px, 7vw, 88px);
}
.page-blog > .hero-section + .blog-content .blog-archive-body {
  padding-top: clamp(64px, 8vw, 96px);
}
.page-blog > .blog-topics-strip + .blog-content .blog-archive-body {
  padding-top: clamp(40px, 5vw, 56px);
}
.page-blog .blog-content {
  padding: 0;
}
.page-blog .blog-archive-body {
  padding-bottom: clamp(48px, 6vw, 72px);
}
.page-blog .contact-cta-section {
  padding-top: clamp(64px, 8vw, 96px);
}

.blog-archive-body__shell {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
@media screen and (max-width: 1280px) {
  .blog-archive-body__shell {
    grid-template-columns: 1fr;
  }
}

.blog-archive-sidebar {
  position: sticky;
  top: calc(var(--header-height, 88px) + 20px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 1280px) {
  .blog-archive-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .blog-archive-sidebar {
    grid-template-columns: 1fr;
  }
}
.blog-archive-sidebar__panel {
  border: 1px solid rgba(29, 29, 29, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #fafbfc 100%);
  box-shadow: 0 14px 30px -24px rgba(29, 29, 29, 0.14);
}
.blog-archive-sidebar__panel--topics {
  padding: 22px 20px;
}
.blog-archive-sidebar__panel--cta {
  padding: 24px 22px;
  background: linear-gradient(145deg, rgba(25, 156, 168, 0.08), rgba(242, 82, 32, 0.08));
}
.blog-archive-sidebar__panel--tip {
  padding: 20px 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.blog-archive-sidebar__title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.55);
}
.blog-archive-sidebar__topics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.blog-archive-sidebar__topic {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #1D1D1D;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.blog-archive-sidebar__topic.is-active {
  background: rgba(242, 82, 32, 0.1);
  color: #F25220;
}
@media (hover: hover) {
  .blog-archive-sidebar__topic:hover:not(.is-active) {
    background: rgba(29, 29, 29, 0.04);
  }
}
.blog-archive-sidebar__topic-count {
  font-size: 12px;
  font-weight: 700;
  color: rgba(29, 29, 29, 0.45);
}
.blog-archive-sidebar__eyebrow {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #199CA8;
}
.blog-archive-sidebar__cta-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #1D1D1D;
}
.blog-archive-sidebar__cta-copy {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(29, 29, 29, 0.62);
}
.blog-archive-sidebar__tip-icon {
  flex: 0 0 auto;
  color: #F25220;
  font-size: 18px;
  line-height: 1;
}
.blog-archive-sidebar__tip-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(29, 29, 29, 0.62);
}
@media screen and (max-width: 1280px) {
  .blog-archive-sidebar__panel--topics {
    grid-column: 1/-1;
  }
}

.blog-archive-main {
  min-width: 0;
}
.blog-archive-main__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.5vw, 32px);
  margin-bottom: clamp(24px, 3vw, 36px);
}
@media screen and (max-width: 768px) {
  .blog-archive-main__toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}
.blog-archive-main__heading {
  flex: 1 1 auto;
  min-width: 0;
}
.blog-archive-main__title {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1D1D1D;
}
.blog-archive-main__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(29, 29, 29, 0.58);
}

.blog-filters {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .blog-filters {
    width: 100%;
  }
}
.blog-filters__tags {
  display: none;
}
.blog-filters__search {
  flex: 0 0 auto;
  width: clamp(240px, 28vw, 360px);
  max-width: 360px;
}
@media screen and (max-width: 768px) {
  .blog-filters__search {
    width: 100%;
    max-width: none;
  }
}
.blog-filters__search .field {
  margin: 0;
}
.blog-filters__search input[type=search] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(29, 29, 29, 0.1);
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.blog-filters__search input[type=search]:focus {
  outline: none;
  border-color: rgba(242, 82, 32, 0.45);
  box-shadow: 0 0 0 3px rgba(242, 82, 32, 0.12);
}

.blog-posts {
  margin: 0;
}

.blog-posts__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .blog-posts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.blog-post-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-post-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.blog-post-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f1f1f1;
}
.blog-post-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-post-card__image:hover img {
  transform: scale(1.05);
}
.blog-post-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}
.blog-post-card__meta-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-post-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-post-card__category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(25, 156, 168, 0.1);
  color: #199CA8;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-post-card__date {
  color: #757575;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.blog-post-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #1D1D1D;
}
.blog-post-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-post-card__title a:hover {
  color: #F25220;
}

.blog-post-card--skeleton {
  pointer-events: none;
  cursor: default;
}
.blog-post-card--skeleton .blog-post-card__title a {
  pointer-events: none;
}

.blog-empty,
.blog-no-results {
  text-align: center;
  padding: 80px 20px;
  color: rgba(29, 29, 29, 0.55);
  border: 1px dashed rgba(29, 29, 29, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}
.blog-empty p,
.blog-no-results p {
  font-size: 18px;
  margin: 0;
}

.skeleton-loader {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 6px;
}

.skeleton-text {
  display: inline-block;
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.blog-pagination {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
  justify-content: center;
}
.blog-pagination .page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-pagination .page-numbers li {
  margin: 0;
}
.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 1px solid rgba(29, 29, 29, 0.1);
}
.blog-pagination .page-numbers a {
  color: #1D1D1D;
  background: #FFFFFF;
}
@media (hover: hover) {
  .blog-pagination .page-numbers a:hover {
    background: #F25220;
    color: #FFFFFF;
    border-color: #F25220;
  }
}
.blog-pagination .page-numbers .current {
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  color: #FFFFFF;
  border-color: transparent;
}
.blog-pagination .page-numbers .disabled {
  color: rgba(29, 29, 29, 0.35);
  background: #f4f5f7;
  border-color: rgba(29, 29, 29, 0.06);
  opacity: 0.7;
  pointer-events: none;
}
.blog-pagination .page-numbers .dots {
  border: none;
  color: rgba(29, 29, 29, 0.45);
}

.blog-post-hero-section {
  padding: 140px 20px 0;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .blog-post-hero-section {
    padding: 40px 20px 0;
  }
}
.blog-post-hero-section .container {
  padding: 0;
}

.blog-post-hero-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #1D1D1D;
}
@media screen and (max-width: 768px) {
  .blog-post-hero-breadcrumbs {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.blog-post-hero-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-post-hero-breadcrumbs a:hover {
  color: #F25220;
}
.blog-post-hero-breadcrumbs .separator {
  color: #757575;
}

.blog-post-hero-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1D1D1D;
  margin: 0 0 24px;
}
@media screen and (max-width: 768px) {
  .blog-post-hero-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}

.blog-post-hero-excerpt {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: #1D1D1D;
  margin: 0 auto 32px;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .blog-post-hero-excerpt {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
}

.blog-post-hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .blog-post-hero-tags {
    margin-bottom: 32px;
    gap: 10px;
  }
}

.blog-post-tag-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  background: #FFFFFF;
  color: #1D1D1D;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .blog-post-tag-badge {
    font-size: 13px;
    padding: 6px 14px;
  }
}

.blog-post-hero-image {
  width: 100%;
  margin-top: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.blog-post-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-single .container {
  max-width: 800px;
}

.blog-post-content {
  margin: 40px 0;
}
.blog-post-content .blog-post-body {
  font-size: 18px;
  line-height: 1.8;
  color: #1D1D1D;
}
@media screen and (max-width: 768px) {
  .blog-post-content .blog-post-body {
    font-size: 14px;
    line-height: 1.7;
  }
}
.blog-post-content .blog-post-body p {
  margin: 0 0 24px;
}
.blog-post-content .blog-post-body p:last-child {
  margin-bottom: 0;
}
.blog-post-content .blog-post-body h2,
.blog-post-content .blog-post-body h3,
.blog-post-content .blog-post-body h4,
.blog-post-content .blog-post-body h5,
.blog-post-content .blog-post-body h6 {
  margin: 40px 0 20px;
  color: #1D1D1D;
  font-weight: 700;
}
.blog-post-content .blog-post-body h2:first-child,
.blog-post-content .blog-post-body h3:first-child,
.blog-post-content .blog-post-body h4:first-child,
.blog-post-content .blog-post-body h5:first-child,
.blog-post-content .blog-post-body h6:first-child {
  margin-top: 0;
}
.blog-post-content .blog-post-body h2 {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .blog-post-content .blog-post-body h2 {
    font-size: 24px;
  }
}
.blog-post-content .blog-post-body h3 {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .blog-post-content .blog-post-body h3 {
    font-size: 20px;
  }
}
.blog-post-content .blog-post-body img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 32px 0;
}
@media screen and (max-width: 768px) {
  .blog-post-content .blog-post-body img {
    margin: 24px 0;
  }
}
.blog-post-content .blog-post-body ul,
.blog-post-content .blog-post-body ol {
  margin: 24px 0;
  padding-left: 30px;
}
.blog-post-content .blog-post-body ul li,
.blog-post-content .blog-post-body ol li {
  margin-bottom: 12px;
}
.blog-post-content .blog-post-body a {
  color: #F25220;
  text-decoration: underline;
}
.blog-post-content .blog-post-body a:hover {
  color: rgb(210.7161016949, 59.5296610169, 12.2838983051);
}

.blog-post-author-share {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .blog-post-author-share {
    margin-top: 48px;
    padding-top: 32px;
  }
}
.blog-post-author-share__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .blog-post-author-share__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

.blog-post-author-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .blog-post-author-info {
    width: 100%;
  }
}

.blog-post-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f1f1;
}
@media screen and (max-width: 768px) {
  .blog-post-author-avatar {
    width: 48px;
    height: 48px;
  }
}
.blog-post-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-author-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-post-author-title {
  font-size: 12px;
  font-weight: 500;
  color: #757575;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-post-author-name {
  font-size: 20px;
  font-weight: 700;
  color: #1D1D1D;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 768px) {
  .blog-post-author-name {
    font-size: 18px;
  }
}

.blog-post-share {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .blog-post-share {
    align-items: flex-start;
    width: 100%;
  }
}

.blog-post-share-title {
  font-size: 14px;
  font-weight: 700;
  color: #1D1D1D;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-post-share-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.blog-post-share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
  color: #1D1D1D;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .blog-post-share-icon {
    width: 40px;
    height: 40px;
  }
}
.blog-post-share-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.blog-post-share-icon:hover {
  border-color: #F25220;
  color: #F25220;
  background: rgba(242, 82, 32, 0.05);
  transform: translateY(-2px);
}

.blog-latest-posts-section {
  padding: 80px 0;
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .blog-latest-posts-section {
    padding: 60px 0;
  }
}
.blog-latest-posts-section .container {
  max-width: 1200px;
}

.blog-latest-posts-title {
  font-size: 48px;
  font-weight: 700;
  color: #1D1D1D;
  margin: 0 0 48px;
}
@media screen and (max-width: 768px) {
  .blog-latest-posts-title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

.blog-latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .blog-latest-posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .blog-latest-posts-grid {
    gap: 24px;
  }
}

.page-404 {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 20px;
}
.page-404 .error-404-content {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 600px;
  width: 100%;
}
.page-404 .error-404-number {
  font-size: 30vw;
  font-weight: 700;
  line-height: 1;
  color: rgba(242, 82, 32, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
@media screen and (max-width: 768px) {
  .page-404 .error-404-number {
    font-size: 30vw;
  }
}
.page-404 .error-404-message {
  position: relative;
  z-index: 1;
}
.page-404 .error-404-message h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1D1D1D;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page-404 .error-404-message h1 {
    font-size: 28px;
  }
}
.page-404 .error-404-message p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(29, 29, 29, 0.7);
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .page-404 .error-404-message p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
}
.page-404 .error-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page-404 .error-404-actions {
    flex-direction: column;
  }
  .page-404 .error-404-actions .btn {
    width: 100%;
  }
}

.our-team-section {
  overflow-x: clip;
}
.our-team-section .container {
  overflow-x: clip;
}
.our-team-section__header {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}
.our-team-section__header .component-eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.our-team-section__title {
  margin: 16px 0 18px;
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #1D1D1D;
}
.our-team-section__title em {
  font-style: italic;
  color: #F25220;
}
.our-team-section__description {
  margin: 0 auto 28px;
  max-width: 58ch;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(29, 29, 29, 0.62);
}
.our-team-section__actions {
  display: flex;
  justify-content: center;
}
.our-team-section__slider-wrap {
  position: relative;
  padding: 0 0 56px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .our-team-section__slider-wrap {
    padding: 0 0 48px;
  }
}

.team-slide-card {
  height: 100%;
  min-height: clamp(420px, 36vw, 520px);
}
.team-slide-card__media {
  position: relative;
  height: 100%;
  min-height: inherit;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 29, 0.08);
  box-shadow: 0 1px 2px rgba(29, 29, 29, 0.04), 0 18px 40px -24px rgba(29, 29, 29, 0.22);
  background: #111;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}
.team-slide-card__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 36vw, 520px);
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s ease;
  filter: grayscale(0.15);
}
.team-slide-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 29, 29, 0.04) 0%, rgba(29, 29, 29, 0.08) 42%, rgba(29, 29, 29, 0.72) 100%);
  pointer-events: none;
}
.team-slide-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(22px, 2.4vw, 30px);
  color: #FFFFFF;
}
.team-slide-card__index {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(29, 29, 29, 0.45);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 100px;
  line-height: 1;
}
.team-slide-card__name {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.team-slide-card__role {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff9a72;
  line-height: 1.35;
}
.team-slide-card__bio {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (hover: hover) {
  .team-slide-card:hover .team-slide-card__media {
    transform: translateY(-6px);
    border-color: rgba(242, 82, 32, 0.35);
    box-shadow: 0 28px 56px -28px rgba(29, 29, 29, 0.35);
  }
  .team-slide-card:hover .team-slide-card__media img {
    filter: grayscale(0);
    transform: scale(1.04);
  }
}

#team-slider {
  overflow: hidden;
  position: relative;
  padding-bottom: 8px;
  touch-action: pan-y pinch-zoom;
}
#team-slider .swiper-wrapper {
  align-items: stretch;
}
#team-slider .swiper-slide {
  height: auto;
  display: flex;
}
#team-slider .swiper-button-prev,
#team-slider .swiper-button-next {
  top: 42%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(29, 29, 29, 0.1);
  box-shadow: 0 12px 28px -12px rgba(29, 29, 29, 0.25);
  color: #1D1D1D;
}
#team-slider .swiper-button-prev::after,
#team-slider .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}
@media (hover: hover) {
  #team-slider .swiper-button-prev:hover,
  #team-slider .swiper-button-next:hover {
    background: #F25220;
    border-color: #F25220;
    color: #FFFFFF;
  }
}
#team-slider .swiper-button-prev {
  left: 8px;
}
#team-slider .swiper-button-next {
  right: 8px;
}
#team-slider .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(29, 29, 29, 0.1);
  overflow: hidden;
}
#team-slider .swiper-pagination-progressbar-fill {
  background: #F25220;
  border-radius: 999px;
}
@media screen and (max-width: 768px) {
  #team-slider .swiper-button-prev,
  #team-slider .swiper-button-next {
    display: none;
  }
}

.page-meet-our-team {
  overflow-x: clip;
}
.page-meet-our-team .team-promise-section .about-story-section__title em {
  font-style: italic;
}

.is-component-library .page-content {
  margin-top: 94px;
}
.is-component-library [data-animated-container] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.cltr-lib__hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid rgba(29, 29, 29, 0.08);
  background: #fff;
}
.cltr-lib__badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(242, 82, 32, 0.12);
  color: #F25220;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cltr-lib__title {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}
.cltr-lib__lede {
  margin: 0;
  max-width: 62ch;
  color: rgba(29, 29, 29, 0.72);
  font-size: 16px;
  line-height: 1.55;
}
.cltr-lib__layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  padding: 32px 20px 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .cltr-lib__layout {
    grid-template-columns: 1fr;
  }
}
.cltr-lib__nav {
  position: sticky;
  top: 106px;
  max-height: calc(100vh - 82px - 48px);
  overflow: auto;
  padding: 16px;
  border: 1px solid rgba(29, 29, 29, 0.08);
  border-radius: 16px;
  background: #fff;
}
@media (max-width: 1024px) {
  .cltr-lib__nav {
    position: static;
    max-height: none;
  }
}
.cltr-lib__nav-group + .cltr-lib__nav-group {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(29, 29, 29, 0.08);
}
.cltr-lib__nav-group-title {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.55);
}
.cltr-lib__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cltr-lib__nav li + li {
  margin-top: 4px;
}
.cltr-lib__nav a {
  display: block;
  padding: 6px 8px;
  border-radius: 8px;
  color: #1D1D1D;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}
.cltr-lib__nav a:hover {
  background: rgba(242, 82, 32, 0.08);
  color: #F25220;
}
.cltr-lib__nav a.is-active {
  background: rgba(242, 82, 32, 0.14);
  color: #F25220;
  font-weight: 600;
}
.cltr-lib__content {
  min-width: 0;
}
.cltr-lib__empty {
  margin: 0;
  padding: 32px;
  border: 1px dashed rgba(29, 29, 29, 0.18);
  border-radius: 18px;
  color: rgba(29, 29, 29, 0.65);
  text-align: center;
}
.cltr-lib__item-group {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.55);
}
.cltr-lib__item-title {
  margin: 0 0 6px;
  font-size: clamp(22px, 3vw, 28px);
}
.cltr-lib__item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.cltr-lib__item-path {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(29, 29, 29, 0.05);
  font-size: 12px;
}
.cltr-lib__item-meta {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(29, 29, 29, 0.06);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cltr-lib__preview {
  overflow: hidden;
  border: 1px dashed rgba(29, 29, 29, 0.18);
  border-radius: 18px;
  background: #fff;
}
.cltr-lib__preview > .page-section:first-child {
  padding-top: 64px;
}
.cltr-lib__preview .page-section:last-child {
  padding-bottom: 64px;
}
.cltr-lib__preview .cltr-lib-note {
  margin: 0;
  padding: 24px;
  color: rgba(29, 29, 29, 0.65);
  font-size: 14px;
}

body {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  h4 {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  h5 {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  h6 {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  p {
    font-size: 14px;
  }
}

.component-title {
  margin: 0 0 0.75rem;
}

.component-title--large {
  margin: 0 0 1rem;
}

.component-title--small {
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

.component-desc {
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.service-post--no-margin {
  margin: 0;
}

.section-heading,
.page-section-title__heading {
  font-family: "Gilroy", sans-serif;
  font-size: clamp(32px, 5.2vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1D1D1D;
}
.section-heading strong,
.section-heading span,
.page-section-title__heading strong,
.page-section-title__heading span {
  font-weight: 700;
  color: #F25220;
}

@media screen and (max-width: 768px) {
  .section-heading,
  .page-section-title__heading {
    font-size: 24px;
    line-height: 1.2;
  }
}
/* ==========================================================
   "Why Prime Air" — scroll-pinned section
   ========================================================== */
.why-prime-air-pinned {
  color: #FFFFFF;
  --why-pinned-stage-max: 1200px;
}
.why-prime-air-pinned__scene {
  position: relative;
  height: 460vh;
  background: #0c0c0e;
}
.why-prime-air-pinned__stage {
  position: sticky;
  top: calc(calc(82px + 32px) + max(0px, (calc(100vh - calc(82px + 32px) - 32px) - min(var(--why-pinned-stage-max), calc(100vh - calc(82px + 32px) - 32px))) / 2));
  height: min(var(--why-pinned-stage-max), calc(100vh - calc(82px + 32px) - 32px));
  max-height: min(var(--why-pinned-stage-max), calc(100vh - calc(82px + 32px) - 32px));
  padding: 56px 0;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-prime-air-pinned__stage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.5;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 85%);
}
.why-prime-air-pinned__stage-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(46% 60% at calc(20% + var(--p, 0) * 60%) calc(30% + var(--p, 0) * 40%), rgba(242, 82, 32, 0.5), transparent 60%);
}
.why-prime-air-pinned__head {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 3;
}
.why-prime-air-pinned__head-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.why-prime-air-pinned__head-copy .component-eyebrow {
  margin-bottom: 12px;
}
.why-prime-air-pinned__title.section-heading {
  color: #FFFFFF;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
}
.why-prime-air-pinned__title.section-heading span {
  display: inline;
  color: #F25220;
}
.why-prime-air-pinned__subtitle {
  margin: 0;
  max-width: 34ch;
  text-align: right;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}
.why-prime-air-pinned__main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.why-prime-air-pinned__steps {
  position: relative;
  min-height: min(330px, var(--why-pinned-stage-max) - 320px);
}
.why-prime-air-pinned__step {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.why-prime-air-pinned__step.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.why-prime-air-pinned__kicker {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgb(244.2474576271, 111.9084745763, 70.5525423729);
}
.why-prime-air-pinned__step-title {
  margin: 0 0 22px;
  font-family: "Gilroy", sans-serif;
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
.why-prime-air-pinned__step-title em {
  font-style: normal;
  color: #F25220;
}
.why-prime-air-pinned__step-desc {
  margin: 0;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.84);
}
.why-prime-air-pinned__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}
.why-prime-air-pinned__tags span {
  font-size: 12.5px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
}
.why-prime-air-pinned__step-media {
  display: none;
  position: relative;
  margin: 4px 0 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #15151a;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.55);
}
.why-prime-air-pinned__step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-prime-air-pinned__step-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 12, 14, 0.45));
  pointer-events: none;
}
.why-prime-air-pinned__step-media-num {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 1;
  font-size: clamp(40px, 12vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  opacity: 0.18;
  pointer-events: none;
}
.why-prime-air-pinned__rail {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 300px;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 3;
  border-radius: 2px;
}
.why-prime-air-pinned__rail > i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: #F25220;
  border-radius: 2px;
  transition: height 0.25s linear;
}
.why-prime-air-pinned__rail-marks {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
}
.why-prime-air-pinned__rail-mark {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0c0c0e;
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.why-prime-air-pinned__rail-mark.is-on {
  border-color: #F25220;
  background: #F25220;
  box-shadow: 0 0 0 5px rgba(242, 82, 32, 0.25);
}
.why-prime-air-pinned__visual {
  position: relative;
  height: min(440px, var(--why-pinned-stage-max) - 280px);
  max-height: 440px;
  border-radius: 24px;
  overflow: hidden;
  background: #15151a;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
}
.why-prime-air-pinned__visual-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.why-prime-air-pinned__visual-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.why-prime-air-pinned__visual-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-prime-air-pinned__visual-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 12, 14, 0.55));
}
.why-prime-air-pinned__visual-num {
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 2;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  opacity: 0.18;
}
.why-prime-air-pinned__counter {
  position: absolute;
  bottom: 56px;
  left: 0;
  right: 0;
  z-index: 3;
}
.why-prime-air-pinned__counter-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.why-prime-air-pinned__counter-inner b {
  font-size: 18px;
  font-weight: 700;
  color: #F25220;
}
.why-prime-air-pinned__counter-inner small {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.58);
}
.why-prime-air-pinned__counter-bar {
  flex: 1;
  max-width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  position: relative;
}
.why-prime-air-pinned__counter-bar i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #F25220;
  border-radius: 2px;
  transition: width 0.25s linear;
}
.why-prime-air-pinned.is-static .why-prime-air-pinned__scene {
  height: auto;
}
.why-prime-air-pinned.is-static .why-prime-air-pinned__stage {
  position: static;
  height: auto;
  max-height: none;
  overflow: visible;
  padding: calc(82px + 48px) 0 60px;
}
.why-prime-air-pinned.is-static .why-prime-air-pinned__head {
  position: static;
  margin-bottom: 34px;
}
.why-prime-air-pinned.is-static .why-prime-air-pinned__head-inner {
  flex-direction: column;
  align-items: flex-start;
}
.why-prime-air-pinned.is-static .why-prime-air-pinned__subtitle {
  max-width: none;
  text-align: left;
}
.why-prime-air-pinned.is-static .why-prime-air-pinned__main {
  grid-template-columns: 1fr;
  gap: 0;
}
.why-prime-air-pinned.is-static .why-prime-air-pinned__steps {
  position: static;
  min-height: 0;
  display: grid;
  gap: 0;
}
.why-prime-air-pinned.is-static .why-prime-air-pinned__step {
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.why-prime-air-pinned.is-static .why-prime-air-pinned__step:first-child {
  padding-top: 0;
}
.why-prime-air-pinned.is-static .why-prime-air-pinned__step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.why-prime-air-pinned.is-static .why-prime-air-pinned__step-media {
  display: block;
}
.why-prime-air-pinned.is-static .why-prime-air-pinned__rail,
.why-prime-air-pinned.is-static .why-prime-air-pinned__visual,
.why-prime-air-pinned.is-static .why-prime-air-pinned__counter {
  display: none;
}
@media screen and (min-width: 769px) {
  .why-prime-air-pinned.is-static .why-prime-air-pinned__stage {
    padding: calc(82px + 56px) 0 90px;
  }
}
@media screen and (max-width: 1280px) {
  .why-prime-air-pinned .why-prime-air-pinned__scene {
    height: auto;
  }
  .why-prime-air-pinned .why-prime-air-pinned__stage {
    position: static;
    height: auto;
    max-height: none;
    overflow: visible;
    padding: calc(82px + 48px) 0 60px;
  }
  .why-prime-air-pinned .why-prime-air-pinned__head {
    position: static;
    margin-bottom: 34px;
  }
  .why-prime-air-pinned .why-prime-air-pinned__head-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .why-prime-air-pinned .why-prime-air-pinned__subtitle {
    max-width: none;
    text-align: left;
  }
  .why-prime-air-pinned .why-prime-air-pinned__main {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .why-prime-air-pinned .why-prime-air-pinned__steps {
    position: static;
    min-height: 0;
    display: grid;
    gap: 0;
  }
  .why-prime-air-pinned .why-prime-air-pinned__step {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .why-prime-air-pinned .why-prime-air-pinned__step:first-child {
    padding-top: 0;
  }
  .why-prime-air-pinned .why-prime-air-pinned__step:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .why-prime-air-pinned .why-prime-air-pinned__step-media {
    display: block;
  }
  .why-prime-air-pinned .why-prime-air-pinned__rail,
  .why-prime-air-pinned .why-prime-air-pinned__visual,
  .why-prime-air-pinned .why-prime-air-pinned__counter {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .why-prime-air-pinned .why-prime-air-pinned__stage {
    padding: calc(82px + 16px) 0 36px;
  }
  .why-prime-air-pinned .why-prime-air-pinned__head {
    margin-bottom: 22px;
  }
  .why-prime-air-pinned .why-prime-air-pinned__title.section-heading {
    font-size: clamp(24px, 7vw, 32px);
  }
  .why-prime-air-pinned .why-prime-air-pinned__subtitle {
    font-size: 14px;
    line-height: 1.55;
  }
  .why-prime-air-pinned .why-prime-air-pinned__step {
    gap: 14px;
    padding: 22px 0;
  }
  .why-prime-air-pinned .why-prime-air-pinned__kicker {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .why-prime-air-pinned .why-prime-air-pinned__step-title {
    margin-bottom: 12px;
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.06;
  }
  .why-prime-air-pinned .why-prime-air-pinned__step-desc {
    font-size: 15px;
    line-height: 1.58;
  }
  .why-prime-air-pinned .why-prime-air-pinned__tags {
    margin-top: 16px;
    gap: 8px;
  }
  .why-prime-air-pinned .why-prime-air-pinned__tags span {
    font-size: 12px;
    padding: 6px 11px;
  }
  .why-prime-air-pinned .why-prime-air-pinned__step-media {
    margin-top: 4px;
    border-radius: 12px;
    aspect-ratio: 4/3;
  }
  .why-prime-air-pinned .why-prime-air-pinned__step-media-num {
    top: 12px;
    right: 14px;
    font-size: 40px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.page-content {
  margin-top: 102px;
}

.success {
  color: green;
}

.error, .error_message {
  color: red;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.container {
  max-width: 1480px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  opacity: 0.5;
  height: 100%;
  background: linear-gradient(10deg, #000000 0%, #000000 30%, rgba(255, 255, 255, 0) 80%);
}

.page-section {
  position: relative;
  padding-top: 120px;
  width: 100%;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-section {
    padding-top: 60px;
  }
}

.homepage-slider .swiper {
  width: 100%;
}
.homepage-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background: #F25220;
}

.container_for_scroll {
  display: flex;
  position: relative;
  overflow: hidden;
  gap: 50%;
  transition: 0.2s ease all;
}
.container_for_scroll .scroll_container {
  min-width: 100%;
  height: fit-content;
  transform: translate(-150%, 0);
  transition: 0.2s ease all;
}
.container_for_scroll .scroll_container.active_step {
  position: absolute;
  transform: translate(0, 0);
}
.container_for_scroll .scroll_container.active_step ~ .scroll_container {
  transform: translate(150%, 0);
}
.container_for_scroll .next_step_button_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Scroll-in animation utility */
[data-animated-container] {
  --animate-duration: 0.6s;
  --animate-delay: 0s;
  --animate-transform: translate3d(0, 24px, 0);
  opacity: 0;
  transform: var(--animate-transform);
  transition: opacity var(--animate-duration) ease-out var(--animate-delay), transform calc(var(--animate-duration) + 0.1s) cubic-bezier(0.22, 0.61, 0.36, 1) var(--animate-delay);
  will-change: opacity, transform;
}

[data-animated-container][data-animate=fade-right] {
  --animate-transform: translate3d(-24px, 0, 0);
}

[data-animated-container][data-animate=fade-left] {
  --animate-transform: translate3d(24px, 0, 0);
}

[data-animated-container][data-animate=fade-up] {
  --animate-transform: translate3d(0, 24px, 0);
}

[data-animated-container][data-animate=fade-down] {
  --animate-transform: translate3d(0, -24px, 0);
}

[data-animated-container][data-animate=zoom-in] {
  --animate-transform: scale(0.92);
}

[data-animated-container].is-animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-animated-container][data-animate=zoom-in].is-animated {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-animated-container] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
