@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: #199CA8;
  color: #FFFFFF;
}
.btn-secondary:hover {
  filter: brightness(1.15);
}

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

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;
  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),
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) {
  color: #FFFFFF;
  transition: color 0.3s ease 0.4s;
}
header a:not(.btn):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),
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):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-drawer {
  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-burger {
    display: inline-flex;
    flex-direction: column;
    margin-left: auto;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-burger__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    margin: 3px 0;
    transition: background 0.2s ease;
  }
  body.header-dark-text .mobile-burger__bar,
  header.mega-menu-active .mobile-burger__bar,
  header.sticky-mode .mobile-burger__bar {
    background: #1D1D1D;
  }
  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(90vw, 280px);
    background: #FFFFFF;
    box-shadow: -8px 0 24px rgba(16, 24, 40, 0.18);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.32s ease, opacity 0.24s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
  }
  .mobile-drawer.open {
    transform: translateX(0);
    opacity: 1;
  }
  .mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
  }
  .mobile-drawer__logo {
    display: inline-flex;
    width: 100px;
  }
  .mobile-drawer__close {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
  }
  .mobile-drawer__nav {
    padding: 8px 8px 24px;
    overflow-y: auto;
  }
  .mobile-drawer__cta {
    width: 100%;
    margin-top: auto;
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-drawer__cta .btn {
    width: 100%;
    padding-right: 20px;
  }
  .mobile-drawer__cta .btn .btn-text {
    text-align: center;
    padding-right: 20px;
  }
  .mobile-drawer__cta .btn .btn-text:first-child {
    padding-right: 0;
    padding-left: 20px;
  }
  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-menu-item .mobile-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 8px;
  }
  .mobile-item-link {
    color: #1D1D1D;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .mobile-item-link .chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
  }
  .mobile-item-link[aria-expanded=true] .chevron {
    transform: rotate(-135deg);
  }
  .mobile-submenu {
    padding-left: 16px;
    list-style: none;
    border-left: 2px solid #e5e7eb;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.2s ease;
  }
  .mobile-submenu.show {
    opacity: 1;
  }
  .mobile-submenu > li > a.mobile-item-link {
    display: block;
    padding: 8px 0;
    color: #374151;
    text-decoration: none;
  }
  body.mobile-menu-open .page-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
/* 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;
  color: #FFFFFF;
  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;
}
.site-header .custom_menu_container .with_submenu > .nav-link {
  position: relative;
  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: 0;
  background: transparent;
  border-radius: 40px;
  pointer-events: none;
  min-height: 82px;
  max-height: 0;
  overflow: hidden;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, background 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  z-index: -2;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_content {
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: stretch;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_header {
  font-size: 18px;
  font-weight: 900;
  color: #1D1D1D;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(29, 29, 29, 0.1);
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-content {
  width: fit-content;
  gap: 8px;
  padding: 0;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-content .google-reviews-logo {
  display: flex;
  align-items: center;
  height: 24px;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-content .google-reviews-logo svg {
  height: 24px;
  width: auto;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-content .google-reviews-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-content .google-reviews-stars .star-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-content .google-reviews-stars .star-icon svg {
  width: 16px;
  height: 16px;
  fill: #FFA500;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-content .google-reviews-divider {
  color: #D1D5DB;
  font-size: 20px;
  line-height: 1;
  margin: 0 4px;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-content .google-reviews-text {
  font-size: 14px;
  font-weight: 600;
  color: #1D1D1D;
  white-space: nowrap;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-content .google-reviews-avatars {
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-content .google-reviews-avatars .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  background: #f5f5f5;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-content .google-reviews-avatars .avatar:first-child {
  margin-left: 0;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links .mega_menu_links_footer .google-reviews-content .google-reviews-avatars .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom {
  min-height: 200px;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_menu_custom_header {
  font-size: 18px;
  font-weight: 900;
  color: #1D1D1D;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_posts {
  display: grid;
  gap: 10px;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_post {
  position: relative;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  border-radius: 12px;
  overflow: hidden;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_post__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_post__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_post__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_post__content {
  position: relative;
  z-index: 2;
  padding: 20px 24px;
  color: #FFFFFF;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_post__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_post__title a {
  color: #FFFFFF;
  text-decoration: none;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_post__title a:hover {
  color: #F25220;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_post__arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #F25220;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(242, 82, 32, 0.3);
  text-decoration: none;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_post__arrow svg {
  color: #FFFFFF;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_post__arrow:hover {
  background: #dc3e0d;
  box-shadow: 0 6px 20px rgba(242, 82, 32, 0.5);
  transform: scale(1.1);
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega_post--empty {
  font-size: 14px;
  color: #6b7280;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
  text-align: center;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega-menu-promo {
  background: #f9fafb;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega-menu-promo img {
  margin-bottom: 16px;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega-menu-promo h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1D1D1D;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega-menu-promo p {
  font-size: 14px;
  color: #6b7280;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega-menu-posts h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1D1D1D;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega-menu-posts .mega-menu-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega-menu-posts .mega-menu-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega-menu-posts .mega-menu-post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega-menu-posts .mega-menu-post h5 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega-menu-posts .mega-menu-post h5 a {
  color: #1D1D1D;
  text-decoration: none;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_custom .mega-menu-posts .mega-menu-post h5 a:hover {
  color: #F25220;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container ul.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container ul.sub-menu > li > a {
  display: block;
  padding: 6px 0px;
  color: #111827;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}
.site-header .custom_menu_container .with_submenu .mega_menu_container ul.sub-menu > li > a:hover {
  color: #F25220;
}
.site-header .custom_menu_container .with_submenu:hover > .mega_menu_container, .site-header .custom_menu_container .with_submenu.menu-item-active > .mega_menu_container {
  padding: 102px 0 20px;
  background: #FFFFFF;
  pointer-events: auto;
  max-height: calc(600px + 82px);
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .custom_menu_container .with_submenu:hover > .mega_menu_container .mega_menu_content, .site-header .custom_menu_container .with_submenu.menu-item-active > .mega_menu_container .mega_menu_content {
  opacity: 1;
  transition: opacity 0.2s ease 0.2s;
}

@media (max-width: 1024px) {
  .site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_content {
    grid-template-columns: 1fr;
  }
  .site-header .custom_menu_container .with_submenu .mega_menu_container .mega_menu_links {
    margin-bottom: 24px;
  }
}
/* Header expansion on menu hover */
header.mega-menu-active .site-header-container {
  backdrop-filter: blur(10px);
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 40px 40px 0 0;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
header.mega-menu-active a:not(.btn),
header.mega-menu-active .nav-link {
  color: #1D1D1D;
  transition: color 0.3s ease;
}
header.mega-menu-active a:not(.btn):hover,
header.mega-menu-active .nav-link:hover {
  color: #F25220;
}
header.mega-menu-active .site-title svg .chars_path {
  fill: #1D1D1D;
  transition: fill 0.3s ease;
}

/* Page overlay when mega menu is open */
.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
  backdrop-filter: blur(10px);
}

body.mega-menu-active .page-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.mega-menu-active .page-overlay .mobile-drawer__nav .mobile-menu-list > li {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
body.mega-menu-active .page-overlay .mobile-drawer.open .mobile-menu-list > li {
  opacity: 1;
  transform: translateY(0);
}
body.mega-menu-active .page-overlay .mobile-drawer.open .mobile-menu-list > li:nth-child(1) {
  transition-delay: 0.02s;
}
body.mega-menu-active .page-overlay .mobile-drawer.open .mobile-menu-list > li:nth-child(2) {
  transition-delay: 0.04s;
}
body.mega-menu-active .page-overlay .mobile-drawer.open .mobile-menu-list > li:nth-child(3) {
  transition-delay: 0.06s;
}
body.mega-menu-active .page-overlay .mobile-drawer.open .mobile-menu-list > li:nth-child(4) {
  transition-delay: 0.08s;
}
body.mega-menu-active .page-overlay .mobile-drawer.open .mobile-menu-list > li:nth-child(5) {
  transition-delay: 0.1s;
}
body.mega-menu-active .page-overlay .mobile-drawer.open .mobile-menu-list > li:nth-child(6) {
  transition-delay: 0.12s;
}
body.mega-menu-active .page-overlay .mobile-drawer.open .mobile-menu-list > li:nth-child(7) {
  transition-delay: 0.14s;
}
body.mega-menu-active .page-overlay .mobile-drawer.open .mobile-menu-list > li:nth-child(8) {
  transition-delay: 0.16s;
}

.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;
  }
}

.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: center;
  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: 46px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 100%;
  text-align: left;
}
@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: #1f1f1f;
  color: rgb(136, 136, 136);
  padding: 60px 0 46px;
}

.footer-main {
  padding: 0 100px 40px;
}
@media screen and (max-width: 768px) {
  .footer-main {
    padding: 0 20px 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: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 0;
}

.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__pre {
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: #F25220;
  white-space: nowrap;
  padding: 4px 10px;
}
.page-section-title__heading {
  margin: 0;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5.2vw, 48px);
  color: #1D1D1D;
  line-height: 1.1;
}
.page-section-title__sub {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(29, 29, 29, 0.75);
  font-size: 16px;
  line-height: 140%;
}

@media screen and (max-width: 768px) {
  .page-section-title {
    gap: 10px;
  }
  .page-section-title__pre {
    font-size: 12px;
    letter-spacing: 0.18em;
  }
  .page-section-title__heading {
    font-size: 24px;
    line-height: 1.2;
  }
  .page-section-title__sub {
    font-size: 14px;
    line-height: 140%;
  }
}
.hero-section {
  max-height: 1200px;
  height: calc(100vh - 20px - 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;
  }
}

/**
 * Hero estimate form (2 steps: service selection + contact details)
 * Scoped under .hero-section
 */
.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: 500px;
  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 .form-step {
  display: none;
}
.hero-section .hero-section-form .form-step.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}
.hero-section .hero-section-form .progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.hero-section .hero-section-form .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #199CA8 0%, #1BBAD1 100%);
  transition: width 0.3s ease;
}
.hero-section .hero-section-form .progress-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.hero-section .hero-section-form .hero-section-form-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-section .hero-section-form .hero-section-form-content .form-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-section .hero-section-form .hero-section-form-content .form-field.error input[type=text],
.hero-section .hero-section-form .hero-section-form-content .form-field.error input[type=email],
.hero-section .hero-section-form .hero-section-form-content .form-field.error input[type=tel] {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px #ef4444;
}
.hero-section .hero-section-form .hero-section-form-content .form-field.error .error-message {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 2px;
  font-size: 12px;
  color: #fca5a5;
  line-height: 1.3;
}
.hero-section .hero-section-form .hero-section-form-content .form-field-checkbox {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero-section .hero-section-form .hero-section-form-content .form-field-checkbox.error .checkbox span::before {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px #ef4444;
}
.hero-section .hero-section-form .hero-section-form-content .checkbox-terms-link {
  color: #FFFFFF;
}
.hero-section .hero-section-form .hero-form-service-heading {
  margin-bottom: 12px;
}
.hero-section .hero-section-form .hero-form-service-title {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}
.hero-section .hero-section-form .hero-form-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hero-section .hero-section-form .hero-form-service-card {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.hero-section .hero-section-form .hero-form-service-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.hero-section .hero-section-form .hero-form-service-card .hero-form-service-card-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: background 0.2s, border-color 0.2s;
}
.hero-section .hero-section-form .hero-form-service-card input:checked + .hero-form-service-card-inner {
  background: rgba(25, 156, 168, 0.25);
  border-color: #199CA8;
}
.hero-section .hero-section-form .hero-form-service-card:hover .hero-form-service-card-inner {
  background: rgba(255, 255, 255, 0.12);
}
.hero-section .hero-section-form .hero-form-service-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}
.hero-section .hero-section-form .hero-form-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-section-form .hero-form-service-label {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
}
.hero-section .hero-section-form .hero-form-sub-service-wrapper {
  margin-top: 16px;
}
.hero-section .hero-section-form .hero-form-sub-service-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}
.hero-section .hero-section-form .hero-form-sub-service-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 14px;
}
.hero-section .hero-section-form .form-step[data-step="2"] .form-step-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-section .hero-section-form .hero-form-contact-row {
  display: flex;
  gap: 12px;
}
.hero-section .hero-section-form .hero-form-contact-row > .form-field {
  flex: 1;
  min-width: 0;
}
.hero-section .hero-section-form .form-step[data-step="2"] .form-field label,
.hero-section .hero-section-form .form-step[data-step="2"] .field_container label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-section .hero-section-form .form-step[data-step="2"] input[type=text],
.hero-section .hero-section-form .form-step[data-step="2"] input[type=email],
.hero-section .hero-section-form .form-step[data-step="2"] input[type=tel] {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 14px;
  width: 100%;
}
.hero-section .hero-section-form .form-step[data-step="2"] input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.hero-section .hero-section-form .form-action-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-direction: column;
}
.hero-section .hero-section-form .form-action-buttons button {
  width: 100%;
}
.hero-section .hero-section-form .form-action-buttons .btn-prev-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.hero-section .hero-section-form .form-action-buttons .btn-prev-link.btn-hidden {
  display: none;
}
@media screen and (max-width: 768px) {
  .hero-section .hero-section-form .hero-form-services {
    grid-template-columns: 1fr;
  }
  .hero-section .hero-section-form .hero-form-contact-row {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .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 fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  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 {
  font-size: 56px;
  font-weight: 600;
  color: #1D1D1D;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .location-testimonials__header .location-testimonials__title {
    font-size: 24px;
  }
}
.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;
}

.testimonials-marquee-section {
  margin-top: 60px;
  padding: 80px 0;
  background: #F9FAFB;
  overflow: hidden;
}
.testimonials-marquee-section .container {
  max-width: 100%;
  width: 100%;
}
.testimonials-marquee-section .testimonials-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-marquee-section .testimonials-header .section-label {
  color: #F25220;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.testimonials-marquee-section .testimonials-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #1D1D1D;
  line-height: 1.15;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .testimonials-marquee-section .testimonials-header h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.testimonials-marquee-section .testimonials-header .section-subtitle {
  color: #1D1D1D;
  opacity: 0.8;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .testimonials-marquee-section .testimonials-header .section-subtitle {
    font-size: 14px;
    line-height: 140%;
  }
}
.testimonials-marquee-section .testimonials-marquee {
  margin-top: 48px;
  position: relative;
}
.testimonials-marquee-section .testimonials-marquee::before, .testimonials-marquee-section .testimonials-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  pointer-events: none;
  z-index: 2;
}
.testimonials-marquee-section .testimonials-marquee::before {
  left: 0;
  background: linear-gradient(to right, #F9FAFB 0%, rgba(249, 250, 251, 0.8) 50%, transparent 100%);
}
.testimonials-marquee-section .testimonials-marquee::after {
  right: 0;
  background: linear-gradient(to left, #F9FAFB 0%, rgba(249, 250, 251, 0.8) 50%, transparent 100%);
}
@media screen and (max-width: 768px) {
  .testimonials-marquee-section .testimonials-marquee::before, .testimonials-marquee-section .testimonials-marquee::after {
    display: none;
  }
}
.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.45);
  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(29, 29, 29, 0.08);
  background: rgba(255, 255, 255, 0.8);
  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(29, 29, 29, 0.12);
  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.06);
  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;
  outline: none;
  cursor: default;
}
.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: transparent;
}
.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: #FFF6F3;
  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 {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.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.9;
  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;
}
.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);
}

.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 {
  font-size: 45px;
  font-weight: 700;
  color: #1D1D1D;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .partners-marquee__header .partners-marquee__title {
    font-size: 24px;
  }
}
.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: 100px;
  --marquee-rotate: 0;
}
.text-marquee__container {
  position: relative;
  padding-top: 20px;
  width: 100%;
  height: calc(var(--marquee-height) + 100px);
  overflow: hidden;
}
.text-marquee__wrapper {
  margin-top: 40px;
  width: 110%;
  margin-left: -5px;
  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 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: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.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 {
  display: inline-block;
  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;
  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 .why-choose-badge {
  display: inline-block;
  background: #FFFFFF;
  color: #1D1D1D;
  border-radius: 7px;
  padding: 6px 15px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.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 .why-choose-badge {
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  color: #FFFFFF;
}
.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 {
  margin: 120px 0;
}
@media screen and (max-width: 768px) {
  .faq-section {
    margin: 60px 0;
  }
}
.faq-section .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 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 h2 {
  font-size: 52px;
  font-weight: 700;
  color: #1D1D1D;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .faq-section .faq-header h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.faq-section .faq-header .faq-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #1D1D1D;
  opacity: 0.7;
  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: grid;
  gap: 16px;
}
.faq-section .faq-item {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-section .faq-item:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.faq-section .faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}
.faq-section .faq-toggle:hover {
  background: rgba(0, 0, 0, 0.02);
}
.faq-section .faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #1D1D1D;
  line-height: 1.4;
}
.faq-section .faq-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(29, 29, 29, 0.08);
  color: #1D1D1D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-section .faq-icon svg {
  transition: transform 0.3s ease;
}
.faq-section .faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: #1D1D1D;
  color: #FFFFFF;
}
.faq-section .faq-panel {
  padding: 0 28px 24px 28px;
  color: #1D1D1D;
  opacity: 0.85;
  line-height: 1.7;
}
.faq-section .faq-panel p {
  margin: 0;
}

.workflow-section {
  padding: 120px 0;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .workflow-section {
    padding: 60px 0;
  }
}

.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 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1D1D1D;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .workflow-title {
    font-size: 24px;
    line-height: 1.2;
  }
}

.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;
  }
}

.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 {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .contact-cta-section {
    margin-top: 40px;
  }
}
.contact-cta-section .contact-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(32px, 6vw, 64px);
  border-radius: 40px;
  background: #FFFFFF;
  overflow: hidden;
}
.contact-cta-section .contact-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(25, 156, 168, 0.08) 0%, rgba(242, 82, 32, 0.05) 100%);
  opacity: 0.45;
}
.contact-cta-section .contact-cta__left, .contact-cta-section .contact-cta__right {
  position: relative;
  z-index: 1;
}
.contact-cta-section .contact-cta__left {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 36px);
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .contact-cta-section .contact-cta {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    border-radius: 0;
    padding: 0;
    background: none;
  }
  .contact-cta-section .contact-cta::after {
    display: none;
  }
}
.contact-cta-section .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(25, 156, 168, 0.15);
  color: #199CA8;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-cta-section .status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(25, 156, 168, 0.2);
}
.contact-cta-section .section-title {
  margin: 10px 0 18px;
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.1;
  color: #1D1D1D;
}
@media screen and (max-width: 768px) {
  .contact-cta-section .section-title {
    font-size: 24px;
    line-height: 1.2;
  }
}
.contact-cta-section .section-description {
  margin: 0;
  font-size: 16px;
  line-height: 140%;
  color: rgba(29, 29, 29, 0.75);
  max-width: 560px;
}
@media screen and (max-width: 768px) {
  .contact-cta-section .section-description {
    font-size: 14px;
    line-height: 140%;
  }
}
.contact-cta-section .contact-cta__meta {
  display: grid;
  gap: 24px;
}
.contact-cta-section .quick-reply {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 24px;
  background: rgba(25, 156, 168, 0.12);
  box-shadow: inset 0 0 0 1px rgba(25, 156, 168, 0.18);
}
.contact-cta-section .quick-reply__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #199CA8;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-cta-section .quick-reply__text {
  margin: 0;
  color: rgba(29, 29, 29, 0.7);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .contact-cta-section .quick-reply {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact-cta-section .contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .contact-cta-section .contact-channels {
    grid-template-columns: 1fr;
  }
}
.contact-cta-section .contact-channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 29, 29, 0.06);
  text-decoration: none;
  color: #1D1D1D;
  box-shadow: 0 12px 28px rgba(18, 21, 31, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-cta-section .contact-channel:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(18, 21, 31, 0.12);
}
.contact-cta-section .contact-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(25, 156, 168, 0.14);
  color: #199CA8;
}
.contact-cta-section .contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-cta-section .contact-channel__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.6);
}
.contact-cta-section .contact-channel__value {
  font-size: 14px;
  font-weight: 700;
  color: #1D1D1D;
}
.contact-cta-section .contact-channel--email .contact-channel__icon {
  background: rgba(242, 82, 32, 0.14);
  color: #F25220;
  flex-shrink: 0;
}
.contact-cta-section .contact-cta__consent {
  margin: 0;
  font-size: 13px;
  color: rgba(29, 29, 29, 0.6);
}
.contact-cta-section .contact-cta__consent .contact-cta__consent-link {
  color: #199CA8;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(25, 156, 168, 0.4);
}
.contact-cta-section .contact-cta__consent .contact-cta__consent-link:hover {
  text-decoration-color: #199CA8;
}
.contact-cta-section .contact-cta__right {
  display: flex;
  align-items: stretch;
}
.contact-cta-section .contact-form {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  border: 1px solid rgba(29, 29, 29, 0.06);
  box-shadow: 0 24px 60px rgba(19, 28, 45, 0.1);
  backdrop-filter: blur(6px);
}
.contact-cta-section .contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
@media screen and (max-width: 768px) {
  .contact-cta-section .contact-form__grid {
    grid-template-columns: 1fr;
  }
}
.contact-cta-section .contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-cta-section .contact-form .form-field label {
  font-weight: 600;
  font-size: 14px;
  color: #1D1D1D;
}
.contact-cta-section .contact-form .form-field input,
.contact-cta-section .contact-form .form-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(29, 29, 29, 0.12);
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 16px;
  font-size: 15px;
  color: #1D1D1D;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-cta-section .contact-form .form-field input::placeholder,
.contact-cta-section .contact-form .form-field textarea::placeholder {
  color: rgba(29, 29, 29, 0.4);
}
.contact-cta-section .contact-form .form-field input:focus,
.contact-cta-section .contact-form .form-field textarea:focus {
  outline: none;
  border-color: #199CA8;
  box-shadow: 0 0 0 3px rgba(25, 156, 168, 0.18);
  background: #FFFFFF;
}
.contact-cta-section .contact-form .form-field textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-cta-section .contact-form .form-field--full {
  grid-column: 1/-1;
}
.contact-cta-section .contact-form .contact-form-trust-note {
  margin: -4px 0 0;
  text-align: center;
  color: #199CA8;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.contact-cta-section .contact-form .form-footer {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .contact-cta-section .contact-form .form-footer {
    justify-content: flex-start;
  }
}
.contact-cta-section .contact-form .form-footer .contact-form-result {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.contact-section {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .contact-section {
    margin-bottom: 40px;
  }
}
.contact-section .contact-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(32px, 6vw, 64px);
  border-radius: 40px;
  background: #FFFFFF;
  overflow: hidden;
}
.contact-section .contact-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(25, 156, 168, 0.08) 0%, rgba(242, 82, 32, 0.05) 100%);
  opacity: 0.45;
}
.contact-section .contact-cta__left, .contact-section .contact-cta__right {
  position: relative;
  z-index: 1;
}
.contact-section .contact-cta__left {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 36px);
}
@media screen and (max-width: 768px) {
  .contact-section .contact-cta {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    padding: 0;
    background: none;
  }
}
.contact-section .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(25, 156, 168, 0.15);
  color: #199CA8;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-section .status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(25, 156, 168, 0.2);
}
.contact-section .section-title {
  margin: 10px 0 18px;
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.1;
  color: #1D1D1D;
  max-width: 540px;
}
@media screen and (max-width: 768px) {
  .contact-section .section-title {
    font-size: 24px;
    line-height: 1.2;
  }
}
.contact-section .section-description {
  margin: 0;
  font-size: 16px;
  line-height: 140%;
  color: rgba(29, 29, 29, 0.75);
  max-width: 560px;
}
@media screen and (max-width: 768px) {
  .contact-section .section-description {
    font-size: 14px;
    line-height: 140%;
  }
}
.contact-section .contact-cta__meta {
  display: grid;
  gap: 24px;
}
.contact-section .quick-reply {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 24px;
  background: rgba(25, 156, 168, 0.12);
  box-shadow: inset 0 0 0 1px rgba(25, 156, 168, 0.18);
}
.contact-section .quick-reply__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #199CA8;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-section .quick-reply__text {
  margin: 0;
  color: rgba(29, 29, 29, 0.7);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .contact-section .quick-reply {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact-section .contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .contact-section .contact-channels {
    grid-template-columns: 1fr;
  }
}
.contact-section .contact-channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 29, 29, 0.06);
  text-decoration: none;
  color: #1D1D1D;
  box-shadow: 0 12px 28px rgba(18, 21, 31, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-section .contact-channel:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(18, 21, 31, 0.12);
}
.contact-section .contact-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(25, 156, 168, 0.14);
  color: #199CA8;
}
.contact-section .contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-section .contact-channel__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.6);
}
.contact-section .contact-channel__value {
  font-size: 14px;
  font-weight: 700;
  color: #1D1D1D;
}
.contact-section .contact-channel--email .contact-channel__icon {
  background: rgba(242, 82, 32, 0.14);
  color: #F25220;
  flex-shrink: 0;
}
.contact-section .contact-cta__consent {
  margin: 0;
  font-size: 13px;
  color: rgba(29, 29, 29, 0.6);
}
.contact-section .contact-cta__consent .contact-cta__consent-link {
  color: #199CA8;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(25, 156, 168, 0.4);
}
.contact-section .contact-cta__consent .contact-cta__consent-link:hover {
  text-decoration-color: #199CA8;
}
.contact-section .contact-cta__right {
  display: flex;
  align-items: stretch;
}
.contact-section .contact-form {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  border: 1px solid rgba(29, 29, 29, 0.06);
  box-shadow: 0 24px 60px rgba(19, 28, 45, 0.1);
  backdrop-filter: blur(6px);
}
.contact-section .contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
@media screen and (max-width: 768px) {
  .contact-section .contact-form__grid {
    grid-template-columns: 1fr;
  }
}
.contact-section .contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-section .contact-form .form-field label {
  font-weight: 600;
  font-size: 14px;
  color: #1D1D1D;
}
.contact-section .contact-form .form-field input,
.contact-section .contact-form .form-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(29, 29, 29, 0.12);
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 16px;
  font-size: 15px;
  color: #1D1D1D;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-section .contact-form .form-field input::placeholder,
.contact-section .contact-form .form-field textarea::placeholder {
  color: rgba(29, 29, 29, 0.4);
}
.contact-section .contact-form .form-field input:focus,
.contact-section .contact-form .form-field textarea:focus {
  outline: none;
  border-color: #199CA8;
  box-shadow: 0 0 0 3px rgba(25, 156, 168, 0.18);
  background: #FFFFFF;
}
.contact-section .contact-form .form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-section .contact-form .form-field--full {
  grid-column: 1/-1;
}
.contact-section .contact-form .form-footer {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .contact-section .contact-form .form-footer {
    justify-content: flex-start;
  }
}
.contact-section .contact-form .form-footer .contact-form-result {
  margin-left: 15px;
}

.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: #199CA8;
}
.brands-grid-section--grouped .brands-cta button:hover,
.brands-grid-section--grouped .brands-cta a[role=button]:hover {
  background: rgb(19.7150259067, 123.021761658, 132.4849740933);
}

.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 {
  padding: 72px 0;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.discover-section-text {
  max-width: 860px;
  margin: 0 auto 56px;
}
.discover-section-text h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1D1D1D;
  text-align: center;
  text-wrap: balance;
}
.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-bottom: 30px;
  }
  .discover-section-text h2 {
    font-size: 30px;
    line-height: 1.1;
  }
  .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(52px, 18vw, 74px);
  }
  .discover-section .discover-stat-description {
    font-size: 16px;
    max-width: none;
  }
}

.services-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.services-section .container {
  max-width: 100%;
  width: 100%;
}
.services-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1D1D1D;
  margin-bottom: 30px;
}
.services-section .services-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.services-section .services-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-section .services-features .feature-item .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #F25220;
  border-radius: 50%;
  flex-shrink: 0;
}
.services-section .services-features .feature-item .feature-icon svg {
  color: #FFFFFF;
}
.services-section .services-features .feature-item .feature-text {
  font-size: 15px;
  font-weight: 500;
  color: #1D1D1D;
}
@media screen and (max-width: 768px) {
  .services-section {
    min-height: auto;
    padding: 40px 0;
  }
  .services-section-header {
    margin-bottom: 40px;
  }
  .services-section-header h2 {
    font-size: 24px;
  }
  .services-section .services-features {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  min-height: 600px;
  max-height: 80vh;
  height: clamp(600px, 70vh, 1200px);
}
.services-grid .service-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1/8;
}
.services-grid .service-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1/6;
}
.services-grid .service-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1/8;
}
.services-grid .service-card:nth-child(4) {
  grid-column: 1;
  grid-row: 8/13;
}
.services-grid .service-card:nth-child(5) {
  grid-column: 2;
  grid-row: 6/13;
}
.services-grid .service-card:nth-child(6) {
  grid-column: 3;
  grid-row: 8/13;
}
.services-grid .service-card p {
  width: 90%;
}
@media screen and (max-width: 768px) {
  .services-grid {
    display: flex;
    flex-direction: column;
    min-height: auto;
    max-height: unset;
    height: auto;
  }
}

.service-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.service-card:hover .service-arrow {
  transform: scale(1.1);
}
.service-card-image {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.service-card-image .service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.service-card-image .service-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-image .service-card-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.service-card-image .service-card-content {
  position: relative;
  z-index: 2;
  padding: 40px 30px;
  color: #FFFFFF;
}
.service-card-image .service-card-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2em;
}
.service-card-image .service-card-content p {
  font-size: 15px;
  line-height: 140%;
  margin-bottom: 20px;
  opacity: 0.95;
}
.service-card-icon {
  background: #FFFFFF;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card-icon .service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 156, 168, 0.1);
  border-radius: 16px;
}
.service-card-icon .service-icon svg {
  color: #199CA8;
}
.service-card-icon .service-card-content-with-icon {
  margin-top: auto;
}
.service-card-icon h3 {
  font-size: 28px;
  line-height: 1.2em;
  font-weight: 700;
  color: #1D1D1D;
  margin-bottom: 12px;
}
.service-card-icon p {
  font-size: 15px;
  line-height: 140%;
  color: #1D1D1D;
  flex: 1;
}
.service-card .service-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #F25220;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(242, 82, 32, 0.3);
}
.service-card .service-arrow svg {
  color: #FFFFFF;
}
.service-card .service-arrow:hover {
  background: rgb(220.3542372881, 62.2525423729, 12.8457627119);
  box-shadow: 0 6px 20px rgba(242, 82, 32, 0.5);
}
@media screen and (max-width: 768px) {
  .service-card-image .service-card-content {
    padding: 24px 20px;
    min-height: 280px;
  }
  .service-card-image .service-card-content h3 {
    font-size: 24px;
  }
  .service-card-image .service-card-content p {
    font-size: 14px;
  }
  .service-card-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  .service-card-content .service-icon {
    width: 48px;
    height: 48px;
  }
  .service-card-content h3 {
    font-size: 24px;
  }
  .service-card-content p {
    font-size: 14px;
  }
  .service-card .service-arrow {
    width: 40px;
    height: 40px;
    bottom: 16px;
    right: 16px;
  }
}

.services-cta {
  text-align: center;
}
.services-cta button {
  min-width: 240px;
}

.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;
  }
}

.specials-section {
  margin-top: 40px;
  overflow: hidden;
}
.specials-section .specials-header {
  margin-bottom: 28px;
}
.specials-section .specials-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1D1D1D;
}
.specials-section .specials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
@media screen and (max-width: 1280px) {
  .specials-section .specials-grid {
    grid-template-columns: 1fr;
  }
}
.specials-section .special-card {
  position: relative;
  isolation: isolate;
  border-radius: 24px;
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(140px, 0.88fr);
  align-items: stretch;
  gap: 0;
  padding: 28px 28px 24px;
  color: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset, 0 14px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.specials-section .special-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.2) 0%, transparent 42%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.specials-section .special-card::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto 55%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.18) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
.specials-section .special-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.28) inset, 0 22px 56px rgba(0, 0, 0, 0.16), 0 8px 20px rgba(0, 0, 0, 0.1);
}
.specials-section .special-card:hover::before {
  opacity: 0.92;
}
.specials-section .special-card:hover::after {
  transform: translate(8%, 6%) scale(1.08);
  opacity: 0.75;
}
@media (prefers-reduced-motion: reduce) {
  .specials-section .special-card {
    transition: box-shadow 0.3s ease;
  }
  .specials-section .special-card:hover {
    transform: none;
  }
  .specials-section .special-card::after {
    transition: none;
  }
}
.specials-section .special-card--blue {
  background: linear-gradient(90deg, #199CA8 0%, #28CFD7 100%);
  overflow: visible;
}
.specials-section .special-card--blue::after {
  inset: -18% -8% auto 50%;
  height: 62%;
}
.specials-section .special-card--orange {
  background: linear-gradient(90deg, #F25220 0%, #F77507 100%);
}
.specials-section .special-card .special-card-content {
  position: relative;
  z-index: 2;
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}
.specials-section .special-card .special-card-content .special-title {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 12px;
}
.specials-section .special-card .special-card-content .special-card-content-subtitle {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 10px;
  opacity: 0.98;
}
.specials-section .special-card .special-card-content .special-detail {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.94;
  max-width: 38rem;
}
.specials-section .special-card .special-card-content .special-detail .icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.specials-section .special-card .special-card-aside {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 200px;
  padding-left: 8px;
}
.specials-section .special-card .special-art {
  position: absolute;
  right: -12px;
  bottom: -8px;
  width: min(100%, 280px);
  height: min(340px, 42vw);
  max-height: 340px;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.specials-section .special-card .special-art img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.22));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.specials-section .special-card--blue .special-art {
  right: -28px;
  bottom: -22px;
  width: min(108%, 300px);
  height: min(360px, 44vw);
  max-height: 360px;
  max-width: 100%;
}
.specials-section .special-card--blue .special-art img {
  max-width: none;
  width: auto;
  height: 100%;
  max-width: 100%;
  transform-origin: center right;
  transform: scale(1.04);
  object-position: center right;
}
.specials-section .special-card:hover .special-art img {
  transform: translateY(-4px) scale(1.02);
}
.specials-section .special-card--blue:hover .special-art img {
  transform: translateY(-4px) scale(1.08);
}
@media (prefers-reduced-motion: reduce) {
  .specials-section .special-card:hover .special-art img {
    transform: none;
  }
  .specials-section .special-card--blue:hover .special-art img {
    transform: scale(1.04);
  }
}
.specials-section .special-card .special-card-aside-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.2) 0%, transparent 42%), radial-gradient(circle at 40% 70%, rgba(0, 0, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 16px;
}
.specials-section .special-card .special-card-aside--accent {
  min-height: 200px;
}
.specials-section .special-card .special-arrow {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  margin-top: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, box-shadow 0.35s ease, color 0.3s ease;
}
.specials-section .special-card .special-arrow svg {
  width: 28px;
  height: 26px;
}
.specials-section .special-card .special-arrow:hover {
  background: rgba(255, 255, 255, 0.34);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}
.specials-section .special-card .special-arrow:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}
.specials-section .special-card--orange .special-arrow {
  color: #F25220;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.65);
}
.specials-section .special-card--orange .special-arrow:hover {
  color: #FFFFFF;
  background: rgba(29, 29, 29, 0.35);
  border-color: rgba(255, 255, 255, 0.4);
}
.specials-section .special-card:hover .special-arrow {
  transform: translateY(-4px) scale(1.05);
}
@media (prefers-reduced-motion: reduce) {
  .specials-section .special-card .special-arrow:hover, .specials-section .special-card:hover .special-arrow {
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .specials-section .special-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px 20px 20px;
  }
  .specials-section .special-card .special-title {
    font-size: 24px;
  }
  .specials-section .special-card .special-card-content-subtitle {
    font-size: 18px;
  }
  .specials-section .special-card .special-card-content {
    padding-right: 0;
    margin-bottom: 8px;
  }
  .specials-section .special-card .special-card-aside {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    min-height: 0;
    padding-left: 0;
    margin-top: 4px;
  }
  .specials-section .special-card .special-art {
    display: none;
  }
  .specials-section .special-card .special-arrow {
    width: 52px;
    height: 52px;
  }
  .specials-section .special-card .special-arrow svg {
    width: 22px;
    height: 20px;
  }
}
.specials-section .specials-cta {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.specials-section .specials-cta .specials-footnote {
  color: #1D1D1D;
  opacity: 0.8;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .specials-section .specials-header {
    margin-bottom: 20px;
  }
  .specials-section .specials-header h2 {
    font-size: 24px;
  }
}

/* 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;
}

.service-areas-section {
  margin-top: 60px;
  border-radius: 40px;
  padding: 48px 32px;
}
@media screen and (max-width: 768px) {
  .service-areas-section {
    margin-top: 0;
    padding: 32px 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 .page-section-title__pre {
  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 .page-section-title__pre {
    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: #FF6B35;
  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: #FF6B35;
  background: rgba(255, 107, 53, 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%;
}

/* 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;
}

.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 h2 {
  font-size: 48px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .locations-organized-header h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.locations-organized-header p {
  font-size: 18px;
  line-height: 140%;
  color: #757575;
}
@media screen and (max-width: 768px) {
  .locations-organized-header p {
    font-size: 14px;
    line-height: 140%;
  }
}

.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%;
  }
}

.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 {
  padding: 80px 0;
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .child-locations-section {
    padding: 60px 0;
  }
}

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

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

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

.child-location-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 12px 0;
}

.child-location-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 24px;
  text-decoration: none;
  color: #1D1D1D;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .child-location-card {
    padding: 24px;
    border-radius: 20px;
  }
}
.child-location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #F25220;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.child-location-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1D1D1D;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .child-location-card h3 {
    font-size: 20px;
  }
}
.child-location-card p {
  font-size: 16px;
  line-height: 140%;
  color: #757575;
  margin: 0;
  position: relative;
  transition: color 0.3s ease;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .child-location-card p {
    font-size: 14px;
  }
}
.child-location-card:hover {
  border-color: #F25220;
  background-color: linear-gradient(90deg, #F25220 0%, #F77507 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(242, 82, 32, 0.15);
}
.child-location-card:hover::before {
  opacity: 1;
}
.child-location-card:hover .child-location-arrow {
  background: #199CA8;
}
.child-location-card:hover .child-location-arrow svg {
  color: #FFFFFF;
}
.child-location-card:hover h3 {
  color: #FFFFFF;
}
.child-location-card:hover p {
  color: #FFFFFF;
}
.child-location-card.highlighted {
  background: #F25220;
  border-color: #F25220;
  color: #FFFFFF;
}
.child-location-card.highlighted h3 {
  color: #FFFFFF;
}
.child-location-card.highlighted p {
  color: rgba(255, 255, 255, 0.9);
}
.child-location-card.highlighted .child-location-arrow {
  background: rgba(255, 255, 255, 0.2);
}
.child-location-card.highlighted .child-location-arrow svg {
  color: #FFFFFF;
}
.child-location-card.highlighted:hover {
  background: rgb(234.811440678, 66.3368644068, 13.688559322);
  transform: translateY(-4px) scale(1.02);
}
.child-location-card.highlighted:hover .child-location-arrow {
  background: #199CA8;
}
.child-location-card.highlighted:hover .child-location-arrow svg {
  color: #FFFFFF;
}
.child-location-card.highlighted::before {
  display: none;
}

.child-location-arrow {
  width: 32px;
  height: 32px;
  background: #F25220;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  z-index: 1;
}
.child-location-arrow svg {
  width: 16px;
  height: 16px;
  color: #FFFFFF;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .child-location-arrow svg {
    width: 18px;
    height: 18px;
  }
}

.child-location-card.highlighted .child-location-arrow {
  background: rgba(29, 29, 29, 0.4);
}

.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;
}

/* 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;
  }
}
.service-single .location-brands {
  margin: 120px 0;
}

.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 {
  padding: 48px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F4F4 100%);
}

.when-need__header {
  text-align: center;
  margin-bottom: 24px;
}

.when-need__title {
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 48px);
}

.when-need__subtitle {
  max-width: 880px;
  margin: 12px auto 0;
  color: #666;
}

.when-need__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.when-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  padding: 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.when-card:first-child {
  border-radius: 20px 0 0 20px;
  border: none;
}
.when-card:last-child {
  border-radius: 0 20px 20px 0;
  border: none;
}

.when-card__title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 50px;
}

.when-card__desc {
  color: #444;
  margin-bottom: 21px;
}

.when-card__image {
  border-radius: 14px;
  overflow: hidden;
}

.when-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .when-need__grid {
    grid-template-columns: 1fr;
  }
}
.service-pro {
  padding: 60px 0;
}

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

.service-pro__title {
  font-weight: 600;
  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 40px;
}

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

.service-lifecycle__title {
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 42px);
  margin-bottom: 8px;
}

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

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

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

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

.lifecycle-circle__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #9c9c9c;
  font-size: 32px;
  font-weight: 600;
  pointer-events: none;
  text-align: center;
}

.lifecycle-circle__segment {
  cursor: pointer;
  transition: stroke 0.15s ease, opacity 0.15s ease;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.08));
}

.lifecycle-circle__segment:is(:hover, .is-hover) {
  opacity: 0.95;
}

.lifecycle-circle__segment.is-active {
  stroke: #199CA8;
}

.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;
}

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

.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%);
}
.lifecycle-item__btn-link svg {
  width: 16px;
  height: 16px;
}

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

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

.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 (max-width: 992px) {
  .service-lifecycle__content {
    grid-template-columns: 1fr;
  }
  .lifecycle-circle {
    width: 320px;
    height: 320px;
  }
  .lifecycle-circle__center {
    font-size: 24px;
  }
}
.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;
  }
}
.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;
  }
}
#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;
}

.policy-hero {
  padding: clamp(16px, 5vw, 40px) 0;
}
.policy-hero .policy-title {
  margin: 0;
  font-size: clamp(28px, 5.5vw, 44px);
  line-height: 120%;
  color: #1D1D1D;
}
.policy-hero .policy-subtitle {
  margin: 8px 0 0 0;
  color: #757575;
  max-width: 900px;
}

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

.policy-toc {
  position: sticky;
  top: 114px;
  align-self: start;
}
.policy-toc .policy-toc__inner {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.policy-toc .policy-toc__title {
  font-weight: 800;
  color: #1D1D1D;
  margin-bottom: 8px;
}
.policy-toc .policy-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.policy-toc .policy-toc__item.level-3 {
  margin-left: 10px;
}
.policy-toc .policy-toc__link {
  display: block;
  color: #1D1D1D;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.8;
  transition: 0.2s ease color, 0.2s ease opacity;
}
.policy-toc .policy-toc__link:hover {
  opacity: 1;
  color: #199CA8;
}
.policy-toc .policy-toc__link.active {
  opacity: 1;
  color: #199CA8;
  font-weight: 700;
}

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

.page-promotions .eyebrow {
  color: #199CA8;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 6px 0;
}
.page-promotions .section-title {
  margin: 0 0 12px 0;
  font-size: clamp(24px, 3.4vw, 36px);
  color: #1D1D1D;
}
.page-promotions .promotions-hero {
  padding: clamp(20px, 4vw, 48px) 0;
}
.page-promotions .promotions-hero .promotions-title {
  font-size: clamp(32px, 6vw, 48px);
  line-height: 120%;
  margin: 0 0 10px 0;
  color: #1D1D1D;
}
.page-promotions .promotions-hero .promotions-subtitle {
  max-width: 880px;
  color: #757575;
}
.page-promotions .promotions-hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-promotions .promotions-hero .hero-inner {
    grid-template-columns: 1fr;
  }
}
.page-promotions .promotions-hero .hero-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}
.page-promotions {
  /* Coupons */
}
.page-promotions .promotions-coupons {
  padding: clamp(20px, 5vw, 56px) 0;
}
.page-promotions .promotions-coupons .section-illustration {
  width: 100%;
  max-width: 960px;
  display: block;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 6px auto 16px auto;
}
.page-promotions .promotions-coupons .coupons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.4vw, 24px);
}
@media screen and (max-width: 1280px) {
  .page-promotions .promotions-coupons .coupons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page-promotions .promotions-coupons .coupons-grid {
    grid-template-columns: 1fr;
  }
}
.page-promotions .promotions-coupons .coupon-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease box-shadow, 0.2s ease transform;
}
.page-promotions .promotions-coupons .coupon-card:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.page-promotions .promotions-coupons .coupon-title {
  margin: 0 0 6px 0;
  font-weight: 800;
  color: #1D1D1D;
}
.page-promotions .promotions-coupons .coupon-desc {
  margin: 0;
  color: #757575;
}
.page-promotions .promotions-coupons .coupon-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.page-promotions .promotions-coupons .coupon-code {
  background: rgba(25, 156, 168, 0.08);
  color: #199CA8;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 700;
}
.page-promotions .promotions-coupons .coupon-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #757575;
  font-size: 14px;
}
.page-promotions .promotions-coupons .coupon-valid {
  color: #199CA8;
  font-weight: 600;
}
.page-promotions .promotions-coupons .coupons-note {
  margin-top: 10px;
  color: #757575;
  font-size: 14px;
}
.page-promotions {
  /* Rebates */
}
.page-promotions .promotions-rebates {
  padding: clamp(20px, 5vw, 56px) 0;
}
.page-promotions .promotions-rebates .rebates-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-promotions .promotions-rebates .rebates-layout {
    grid-template-columns: 1fr;
  }
}
.page-promotions .promotions-rebates .rebate-steps {
  counter-reset: rebate;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-promotions .promotions-rebates .rebate-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);
}
.page-promotions .promotions-rebates .rebate-steps > li:before {
  counter-increment: rebate;
  content: counter(rebate);
  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, #F25220 0%, #F77507 100%);
  box-shadow: 0 0 0 4px rgba(242, 82, 32, 0.15);
}
.page-promotions .promotions-rebates .rebate-steps h3 {
  margin: 0 0 4px 0;
  color: #1D1D1D;
  font-size: 18px;
}
.page-promotions .promotions-rebates .rebate-steps p {
  margin: 0;
  color: #757575;
}
.page-promotions .promotions-rebates .rebate-tip {
  margin-top: 12px;
  font-weight: 600;
  color: #1D1D1D;
}
.page-promotions .promotions-rebates .rebates-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}
.page-promotions {
  /* Seasonal offers timeline */
}
.page-promotions .promotions-seasonal {
  padding: clamp(20px, 5vw, 56px) 0;
}
.page-promotions .promotions-seasonal .seasonal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
}
@media screen and (max-width: 768px) {
  .page-promotions .promotions-seasonal .seasonal-layout {
    grid-template-columns: 1fr;
  }
}
.page-promotions .promotions-seasonal .seasonal-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}
.page-promotions .promotions-seasonal .seasonal-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .page-promotions .promotions-seasonal .seasonal-wrap {
    grid-template-columns: 40px 1fr;
    gap: 18px;
  }
}
.page-promotions .promotions-seasonal .seasonal-progress {
  position: relative;
  width: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .page-promotions .promotions-seasonal .seasonal-progress {
    width: 6px;
    margin-left: 8px;
  }
}
.page-promotions .promotions-seasonal .seasonal-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;
}
.page-promotions .promotions-seasonal .seasonal-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-promotions .promotions-seasonal .seasonal-timeline li {
  position: relative;
  padding-left: 36px;
}
.page-promotions .promotions-seasonal .seasonal-timeline li:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #F25220;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(242, 82, 32, 0.25);
}
@media screen and (max-width: 768px) {
  .page-promotions .promotions-seasonal .seasonal-timeline li:before {
    left: 2px;
  }
}
.page-promotions .promotions-seasonal .seasonal-period {
  font-weight: 800;
  color: #1D1D1D;
  margin-bottom: 2px;
}
.page-promotions .promotions-seasonal .seasonal-content {
  color: #757575;
}
.page-promotions {
  /* Bundles */
}
.page-promotions .promotions-bundles {
  padding: clamp(20px, 5vw, 56px) 0;
}
.page-promotions .promotions-bundles .bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.4vw, 24px);
}
@media screen and (max-width: 768px) {
  .page-promotions .promotions-bundles .bundles-grid {
    grid-template-columns: 1fr;
  }
}
.page-promotions .promotions-bundles .bundle-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;
}
.page-promotions .promotions-bundles .bundle-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.page-promotions .promotions-bundles .bundle-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.page-promotions .promotions-bundles .bundle-card h3 {
  margin: 0 0 8px 0;
  color: #1D1D1D;
}
.page-promotions .promotions-bundles .bundle-card ul {
  margin: 0 0 8px 18px;
  color: #1D1D1D;
}
.page-promotions .promotions-bundles .bundle-save {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(25, 156, 168, 0.08);
  color: #199CA8;
  font-weight: 700;
}
.page-promotions {
  /* Terms */
}
.page-promotions .promotions-terms {
  padding: clamp(16px, 4vw, 40px) 0;
}
.page-promotions .promotions-terms .terms-card {
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(140deg, rgba(25, 156, 168, 0.08), rgba(242, 82, 32, 0.06));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.page-promotions .promotions-terms .terms-card h3 {
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-promotions .promotions-terms .terms-card h3 img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.page-promotions .promotions-terms .terms-card ul {
  margin: 0;
  padding-left: 18px;
  color: #1D1D1D;
}
.page-promotions {
  /* CTA */
}
.page-promotions .promotions-cta {
  padding: clamp(16px, 4vw, 40px) 0;
}
.page-promotions .promotions-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) {
  .page-promotions .promotions-cta .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-promotions .promotions-cta .cta-card h3 {
  margin: 0 0 6px 0;
}
.page-promotions .promotions-cta .cta-card p {
  margin: 0 0 6px 0;
  color: #1D1D1D;
}
.page-promotions .promotions-cta .cta-card .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-blog .blog-content {
  padding: 64px 20px;
}
@media screen and (max-width: 768px) {
  .page-blog .blog-content {
    padding: 40px 20px;
  }
}

.blog-posts-section {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .blog-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 32px;
  }
}
.blog-filters__tags {
  display: flex;
  gap: 12px;
  overflow: auto;
  width: 100%;
  flex: 1;
  min-width: 0;
  padding-bottom: 8px;
  margin-bottom: -8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 768px) {
  .blog-filters__tags {
    order: 1;
  }
}
.blog-filters__tags::-webkit-scrollbar {
  height: 6px;
}
.blog-filters__tags::-webkit-scrollbar-track {
  background: transparent;
}
.blog-filters__tags::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.blog-filters__tags::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.blog-filters__tags .blog-filter-btn {
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.blog-filters__tags .blog-filter-btn.btn-secondary {
  background: #FFFFFF;
  color: #1D1D1D;
  border-color: rgba(0, 0, 0, 0.1);
}
.blog-filters__tags .blog-filter-btn.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
.blog-filters__tags .blog-filter-btn.btn-primary {
  border-color: transparent;
}
.blog-filters__search {
  flex-shrink: 0;
  min-width: 200px;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .blog-filters__search {
    max-width: 100%;
    width: 100%;
    order: 0;
  }
}
.blog-filters__search .field {
  margin: 0;
}
.blog-filters__search input[type=search] {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 15px;
  transition: border-color 0.2s ease;
}
.blog-filters__search input[type=search]:focus {
  outline: none;
  border-color: #F25220;
}
.blog-filters__search input[type=search]::placeholder {
  color: #757575;
}

.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-empty,
.blog-no-results {
  text-align: center;
  padding: 80px 20px;
  color: #757575;
}
.blog-empty p,
.blog-no-results p {
  font-size: 18px;
  margin: 0;
}

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

.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: 64px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .blog-pagination {
    margin-top: 40px;
  }
}
.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: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.blog-pagination .page-numbers a {
  color: #1D1D1D;
  background: #FFFFFF;
}
.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;
  cursor: default;
}
.blog-pagination .page-numbers .disabled {
  color: #757575;
  background: #f1f1f1;
  border-color: rgba(0, 0, 0, 0.05);
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}
.blog-pagination .page-numbers .dots {
  border: none;
  cursor: default;
  color: #757575;
}

.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 {
  padding: 110px 0 130px;
  overflow: visible;
}
@media (max-width: 768px) {
  .our-team-section {
    padding: 70px 0 90px;
  }
}
.our-team-section__header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .our-team-section__header {
    margin-bottom: 40px;
  }
}
.our-team-section__badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1D1D1D;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .our-team-section__badge {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.our-team-section__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .our-team-section__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .our-team-section__title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .our-team-section__title {
    font-size: 28px;
  }
}
.our-team-section__description {
  font-size: 18px;
  line-height: 1.6;
  color: #1D1D1D;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .our-team-section__description {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.our-team-section__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .our-team-section__buttons {
    flex-wrap: wrap;
    width: 100%;
  }
  .our-team-section__buttons .button {
    width: 100%;
  }
}
.our-team-section__slider {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .our-team-section__slider {
    padding: 0 0 40px;
  }
}
.our-team-section .container {
  overflow: visible;
}

.team-card {
  background: #111111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  min-height: 360px;
  position: relative;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: stretch;
}
@media (max-width: 768px) {
  .team-card {
    min-height: 320px;
  }
}
.team-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #111111;
  z-index: 0;
}
.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  transition: transform 0.45s ease, filter 0.35s ease;
}
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.06) 48%, rgba(0, 0, 0, 0.2) 100%);
}
.team-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  padding: 20px 18px;
  text-align: left;
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(1px);
}
.team-card__name {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .team-card__name {
    font-size: 19px;
  }
}
.team-card__position {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .team-card__position {
    font-size: 14px;
  }
}
.team-card:hover .team-card__image img {
  filter: grayscale(0);
  transform: scale(1.03);
}

#team-slider {
  overflow: visible;
  position: initial;
}
#team-slider .swiper-wrapper {
  align-items: flex-start;
  overflow: visible;
}
#team-slider .swiper-slide {
  display: flex;
  height: auto;
  transition: transform 0.35s ease;
  overflow: visible;
}
#team-slider .team-column {
  --team-column-offset: 0px;
  --team-column-gap: 22px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--team-column-gap);
  transform: translate3d(0, var(--team-column-offset), 0);
}
#team-slider .swiper-pagination {
  position: absolute;
  left: auto !important;
  transform: none;
  width: 100% !important;
  height: 6px;
  margin-top: 26px;
  border-radius: 999px;
  background: rgba(29, 29, 29, 0.14);
  overflow: hidden;
  top: unset;
  bottom: 0;
}
#team-slider .swiper-pagination-progressbar-fill {
  background: #F25220;
  border-radius: 999px;
}
@media (max-width: 768px) {
  #team-slider .team-column {
    --team-column-offset: 0px;
    --team-column-gap: 8px !important;
    gap: 8px !important;
    transform: translate3d(0, 0, 0);
  }
  #team-slider .swiper-pagination {
    height: 5px;
    margin-top: 18px;
  }
}

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 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.component-title--large {
  font-weight: 700;
  line-height: 1.1;
  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;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
html.announcement-bar-active {
  scroll-padding-top: calc(82px + var(--announcement-bar-height, 0px));
}

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: 1600px;
  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: 80px;
  width: 100%;
  height: auto;
  z-index: 1;
}

.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;
  }
}/*# sourceMappingURL=main.css.map */