/* Full-width layout — outer page wrapper scopes exported page styles */
.site-wrapper {
  width: 100% !important;
  max-width: none !important;
  align-items: stretch !important;
}

.site-wrapper .site-header {
  width: 100% !important;
  left: 0;
  right: 0;
}

/* ========== SITE HEADER START ========== */
.site-header {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #0d0f12f2;
  border-bottom: 1px solid #21242c80;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  height: 80px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* Logo */
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.site-header__logo-image {
  max-height: 56px;
  width: auto;
  display: block;
}

.site-header__logo-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow:
    0 0 60px #40bf711a,
    0 0 40px #40bf7133,
    0 0 20px #40bf714c;
  background: linear-gradient(
    145deg,
    rgba(84, 182, 121, 1) 0%,
    rgba(102, 204, 141, 1) 100%
  );
  font-family: var(--swift-heal-design-lovable-app-georgia-bold-font-family);
  font-weight: var(--swift-heal-design-lovable-app-georgia-bold-font-weight);
  color: #0d0f12;
  font-size: var(--swift-heal-design-lovable-app-georgia-bold-font-size);
  line-height: var(--swift-heal-design-lovable-app-georgia-bold-line-height);
}

.site-header__logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-header__logo-name {
  font-family: var(--swift-heal-design-lovable-app-georgia-bold-font-family);
  font-weight: var(--swift-heal-design-lovable-app-georgia-bold-font-weight);
  color: #efede7;
  font-size: var(--swift-heal-design-lovable-app-georgia-bold-font-size);
  line-height: var(--swift-heal-design-lovable-app-georgia-bold-line-height);
}

.site-header__logo-tagline {
  font-family: var(--swift-heal-design-lovable-app-SF-pro-regular-font-family);
  font-weight: var(--swift-heal-design-lovable-app-SF-pro-regular-font-weight);
  color: #818898;
  font-size: var(--swift-heal-design-lovable-app-SF-pro-regular-font-size);
  line-height: var(--swift-heal-design-lovable-app-SF-pro-regular-line-height);
}

/* Navigation menu */
.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.site-header__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__menu-item {
  padding-left: 4px;
}

.site-header__link {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9.5px 16px 10.5px;
  border-radius: 12px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 9999px;
  background-color: #54b679;
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__link:hover::after,
.site-header__link--active::after,
.site-header__link.theme-nav-link--active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header__link--active,
.site-header__link.theme-nav-link--active,
.site-header__link:hover {
  color: #54b679;
}

.site-header__link-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* Book appointment button */
.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 9.5px 16px 10.5px;
  background-color: #54b679;
  border-radius: 10px;
  box-shadow:
    0 0 60px #40bf711a,
    0 0 40px #40bf7133,
    0 0 20px #40bf714c;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #0d0f12;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__cta:hover {
  opacity: 0.92;
}
/* ========== SITE HEADER END ========== */

.theme-nav-link {
  cursor: pointer;
}

.theme-nav-link--active,
a.theme-nav-link--active {
  opacity: 1;
}

.header-fixed .theme-nav-link--active {
  color: #54b679;
}

/* ========== PAGE CONTENT START ========== */
.page-content {
  display: flex;
  flex-direction: column;
  min-height: 900px;
  align-items: stretch;
  width: 100%;
  flex: 0 0 auto;
  position: relative;
  align-self: stretch;
}

.page-content__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding-bottom: 80px;
  width: 100%;
  flex: 0 0 auto;
  position: relative;
  align-self: stretch;
}

/* Home page — full-width stacked sections, no center gap */
.site-wrapper--home .page-content__main {
  align-items: stretch;
  gap: 0;
  padding-bottom: 0;
}

.site-wrapper--home .page-content__main > section,
.site-wrapper--home .page-content__main > footer {
  width: 100%;
  align-self: stretch;
}
/* ========== PAGE CONTENT END ========== */

.page-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 112px 20px;
  background-color: #1a1d23;
}

.page-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 768px;
  text-align: center;
}

.page-banner__title,
.page-banner__description {
  width: 100%;
}

.page-banner__heading {
  margin: 0;
  font-family: "SF Pro-Bold", Helvetica;
  font-weight: 700;
  color: #efede7;
  font-size: 48px;
  letter-spacing: -1.2px;
  line-height: 48px;
  text-align: center;
}

.page-banner__text {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 18px;
  letter-spacing: -0.45px;
  line-height: 28px;
  text-align: center;
}
/* ========== PAGE BANNER END ========== */

/* ========== BOOKING PROGRESS START ========== */
.site-wrapper--book .page-content__main {
  gap: 0;
  padding-bottom: 0;
}

.site-wrapper--book .page-banner {
  padding-bottom: 48px;
  background-color: #1a1d23;
}

.booking-progress {
  width: 100%;
  padding: 0 20px 80px;
  background-color: #1a1d23;
}

.booking-progress__inner {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.booking-progress__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.booking-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.booking-progress__icon {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background-color: #54b679;
  border-radius: 9999px;
}

.booking-progress__icon-img {
  width: 28px;
  height: 28px;
}

.booking-progress__icon-mark {
  font-size: 20px;
  line-height: 1;
  color: #0d0f12;
}

.booking-progress__title {
  margin: 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 24px;
}

.booking-progress__text {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

/* ========== BOOKING PROGRESS END ========== */

/* ========== BOOKING FORM START ========== */
.booking-form {
  width: 100%;
  padding: 80px 20px 80px;
  background-color: #0d0f12;
}

.booking-form__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 672px;
  width: 100%;
  margin: 0 auto;
}

.booking-form__card {
  width: 100%;
  background-color: #14161a;
  border: 1px solid #21242c;
  border-radius: 12px;
  box-shadow: 0 1px 2px #0000000d;
}

.booking-form__header {
  padding: 24px;
}

.booking-form__title {
  margin: 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 32px;
}

.booking-form__intro {
  margin: 6px 0 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.booking-form__body {
  padding: 0 24px 24px;
}

.booking-form__notice {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #54b6791a;
  border-radius: 12px;
}

.booking-form__notice-text {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #54b679;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.booking-form__notice-label {
  font-family: "SF Pro-Bold", Helvetica;
  font-weight: 700;
}

.booking-form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.booking-form__label {
  padding-left: 4px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 14px;
}

.booking-form__input,
.booking-form__select-input,
.booking-form__date-input,
.booking-form__textarea {
  width: 100%;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 14px;
  letter-spacing: -0.15px;
  background-color: #0d0f12;
  border: 1px solid #21242c;
  border-radius: 10px;
}

.booking-form__input,
.booking-form__select-input,
.booking-form__date-input {
  height: 40px;
  padding: 8px 12px;
}

.booking-form__input::placeholder,
.booking-form__textarea::placeholder {
  color: #818898;
}

.booking-form__select,
.booking-form__date {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
}

.booking-form__select::after {
  content: "\f078";
  position: absolute;
  right: 12px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  color: #818898;
  pointer-events: none;
}

.booking-form__select-input {
  appearance: none;
  padding-right: 36px;
}

.booking-form__select-icon,
.booking-form__date-icon {
  position: absolute;
  right: 12px;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.booking-form__date-icon {
  width: 14px;
  height: 14px;
}

.booking-form__date-input {
  appearance: none;
  padding-right: 36px;
}

.booking-form__date-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.booking-form__date::after {
  content: "\f073";
  position: absolute;
  right: 12px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  color: #818898;
  pointer-events: none;
}

.booking-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-form__row > .booking-form__field {
  min-width: 0;
}

.booking-form__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #21242c;
}

.booking-form__section-title {
  margin: 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 24px;
}

.booking-form__textarea {
  height: 100px;
  min-height: 100px;
  padding: 12px;
  resize: none;
  line-height: 20px;
}

.booking-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  padding: 11.5px 32px 12.5px;
  background-color: #54b679;
  border: none;
  border-radius: 10px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #0d0f12;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  cursor: pointer;
}

.booking-form__submit:hover {
  opacity: 0.92;
}

.booking-form__confirm-note {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  text-align: center;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.booking-form__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.booking-form__phone-text {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}

.booking-form__phone-link {
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #54b679;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
  text-decoration: none;
}

.booking-form__phone-link:hover {
  opacity: 0.92;
}

/* Contact Form 7 booking integration */
.booking-form .wpcf7 {
  width: 100%;
}

.booking-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-form .wpcf7-form p {
  margin: 0;
}

.booking-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-top: 10px;
}

.booking-form .wpcf7-form-control {
  width: 100%;
  max-width: 100%;
}

.booking-form .wpcf7-select,
.booking-form .wpcf7-date,
.booking-form .wpcf7-text,
.booking-form .wpcf7-email,
.booking-form .wpcf7-tel,
.booking-form .wpcf7-textarea {
  width: 100%;
}

.booking-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-family: "SF Pro-Regular", Helvetica;
  font-size: 12px;
  color: #ff8a8a;
}

.booking-form .wpcf7 form .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  background-color: #14161a;
  color: #efede7;
  font-family: "SF Pro-Regular", Helvetica;
  font-size: 14px;
  line-height: 20px;
}

.booking-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: #54b67980;
  background-color: #54b6791a;
  color: #54b679;
}

.booking-form .wpcf7 form.invalid .wpcf7-response-output,
.booking-form .wpcf7 form.failed .wpcf7-response-output,
.booking-form .wpcf7 form.aborted .wpcf7-response-output,
.booking-form .wpcf7 form.spam .wpcf7-response-output {
  border-color: #ff8a8a80;
  background-color: #ff8a8a14;
  color: #ffb3b3;
}

.booking-form .wpcf7-spinner {
  margin: 8px 0 0;
}

.booking-form__cf7-empty {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-size: 14px;
  line-height: 22px;
  color: #818898;
}
/* ========== BOOKING FORM END ========== */

/* ========== SITE FOOTER START ========== */
.site-footer {
  position: relative;
  width: 100%;
  padding: 0 20px;
  background-color: #14161a;
  border-top: 1px solid #21242c80;
  overflow: hidden;
}

.site-footer__glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(32px);
  pointer-events: none;
}

.site-footer__glow--left {
  width: 11.11%;
  height: 160px;
  top: 1px;
  left: 25%;
  background-color: #54b6790d;
}

.site-footer__glow--right {
  width: 8.89%;
  height: 128px;
  left: 66.11%;
  bottom: 0;
  background-color: #dda73c0d;
}

.site-footer__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 96px 32px 32px;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 48px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 384px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.site-footer__logo-image {
  max-height: 64px;
  width: auto;
  display: block;
}

.site-footer__logo-icon {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow:
    0 0 60px #40bf711a,
    0 0 40px #40bf7133,
    0 0 20px #40bf714c;
  background: linear-gradient(145deg, rgba(84, 182, 121, 1) 0%, rgba(102, 204, 141, 1) 100%);
  font-family: "Georgia-Bold", Helvetica;
  font-weight: 700;
  color: #0d0f12;
  font-size: 20px;
  line-height: 28px;
}

.site-footer__logo-text {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
}

.site-footer__logo-name {
  font-family: "Georgia-Bold", Helvetica;
  font-weight: 700;
  color: #efede7;
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 32px;
}

.site-footer__logo-tagline {
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: 0.35px;
  line-height: 20px;
}

.site-footer__about {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 26px;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__contact-icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: #54b6791a;
  border-radius: 12px;
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-footer__contact-icon img {
  transition: filter 0.3s ease;
}

.site-footer__contact-icon i {
  font-size: 15px;
  line-height: 1;
  color: #efede7;
  transition: color 0.3s ease;
}

.site-footer__contact-text,
.site-footer__contact-link {
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 14px;
  letter-spacing: -0.2px;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__contact-text--muted {
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
  transition: color 0.3s ease;
}

.site-footer__contact-item:hover .site-footer__contact-icon {
  background-color: #1a1d2380;
  border: 1px solid #54b67966;
  box-shadow: 0 0 16px rgba(84, 182, 121, 0.35);
}

.site-footer__contact-item:hover .site-footer__contact-icon img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(47%) saturate(459%) hue-rotate(93deg)
    brightness(93%) contrast(87%);
}

.site-footer__contact-item:hover .site-footer__contact-icon i {
  color: #54b679;
}

.site-footer__contact-item:hover .site-footer__contact-text,
.site-footer__contact-item:hover .site-footer__contact-link {
  color: #54b679;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
}

.site-footer__social-link {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: #1a1d2380;
  border: 1px solid #21242c80;
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-footer__social-link img {
  transition: filter 0.3s ease;
}

.site-footer__social-link i {
  font-size: 15px;
  line-height: 1;
  color: #818898;
  transition: color 0.3s ease;
}

.site-footer__social-link:hover {
  border-color: #54b679;
  box-shadow: 0 0 16px rgba(84, 182, 121, 0.35);
}

.site-footer__social-link:hover img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(47%) saturate(459%) hue-rotate(93deg)
    brightness(93%) contrast(87%);
}

.site-footer__social-link:hover i {
  color: #54b679;
}

.site-footer__social-link:focus-visible {
  outline: 2px solid #54b679;
  outline-offset: 2px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.site-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer__nav-title {
  margin: 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #54b679;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 20px;
  text-transform: uppercase;
}

.site-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav-link {
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
  text-decoration: none;
}

.site-footer__nav-link:hover {
  color: #efede7;
}

.site-footer__trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 62px;
  border-top: 1px solid #21242c80;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__badge-text {
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.site-footer__registration {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 672px;
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #54b6794c;
  box-shadow: 0 0 20px #54b6791a, inset 0 0 20px 1px #54b6790d;
  backdrop-filter: blur(10px) brightness(100%);
  -webkit-backdrop-filter: blur(10px) brightness(100%);
  background: linear-gradient(165deg, rgba(20, 22, 26, 0.8) 0%, rgba(20, 22, 26, 0.4) 100%);
}

.site-footer__registration-title {
  margin: 0;
  font-family: "Georgia-Regular", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.site-footer__registration-text {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  text-align: center;
}

.site-footer__registration-text strong {
  color: #efede7;
  font-family: "SF Pro-Bold", Helvetica;
  font-weight: 700;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid #21242c80;
}

.site-footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__copyright-text {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.site-footer__credit-link {
  color: #54b679;
  text-decoration: none;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer__legal-link {
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  text-decoration: none;
}

.site-footer__legal-link:hover {
  color: #efede7;
}
/* ========== SITE FOOTER END ========== */

/* ========== CONTACT INFO START ========== */
.site-wrapper--contact .page-content__main {
  gap: 0;
  padding-bottom: 0;
}

.contact-info {
  width: 100%;
  padding: 80px 20px 64px;
  background-color: #0d0f12;
}

.contact-info__inner {
  max-width: 1336px;
  width: 100%;
  margin: 0 auto;
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.contact-info__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 24px;
  background-color: #14161a;
  border: 1px solid #21242c;
  border-radius: 12px;
  box-shadow: 0 1px 2px #0000000d;
}

.contact-info__icon {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background-color: #54b6791a;
  border-radius: 9999px;
}

.contact-info__icon-img {
  width: 28px;
  height: 28px;
}

.contact-info__icon-mark {
  font-size: 20px;
  line-height: 1;
  color: #54b679;
}

.contact-info__title {
  margin: 12px 0 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 24px;
}

.contact-info__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info__link,
.contact-info__text {
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  text-decoration: none;
}

.contact-info__link:hover {
  color: #efede7;
}
/* ========== CONTACT INFO END ========== */

/* ========== CONTACT FORM START ========== */
.contact-form {
  width: 100%;
  padding: 80px 20px 80px;
  background-color: #1a1d23;
}

.contact-form__inner {
  max-width: 672px;
  width: 100%;
  margin: 0 auto;
}

.contact-form__card {
  width: 100%;
  background-color: #14161a;
  border: 1px solid #21242c;
  border-radius: 12px;
  box-shadow: 0 1px 2px #0000000d;
}

.contact-form__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 24px 0;
}

.contact-form__icon {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background-color: #54b6791a;
  border-radius: 9999px;
}

.contact-form__icon-img {
  width: 28px;
  height: 28px;
}

.contact-form__icon-mark {
  font-size: 20px;
  line-height: 1;
  color: #54b679;
}

.contact-form__title {
  margin: 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 24px;
}

.contact-form__intro {
  margin: 6px 0 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}

.contact-form__body {
  padding: 24px;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.contact-form__label {
  padding-left: 4px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 14px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 14px;
  letter-spacing: -0.15px;
  background-color: #0d0f12;
  border: 1px solid #21242c;
  border-radius: 10px;
}

.contact-form__input {
  height: 40px;
  padding: 8px 12px;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #818898;
}

.contact-form__textarea {
  height: 120px;
  min-height: 120px;
  padding: 12px;
  resize: none;
  line-height: 20px;
}

.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 9.5px 16px 10.5px;
  background-color: #54b679;
  border: none;
  border-radius: 10px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #0d0f12;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  cursor: pointer;
}

.contact-form__submit:hover {
  opacity: 0.92;
}

/* Contact Form 7 theme integration */
.contact-form .wpcf7 {
  width: 100%;
}

.contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form .wpcf7-form p {
  margin: 0;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-family: "SF Pro-Regular", Helvetica;
  font-size: 12px;
  color: #ff8a8a;
}

.contact-form .wpcf7 form .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  border-width: 1px;
  font-family: "SF Pro-Regular", Helvetica;
  font-size: 14px;
  line-height: 20px;
}

.contact-form .wpcf7-spinner {
  margin: 8px 0 0;
}

.contact-form__cf7-empty {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-size: 14px;
  line-height: 22px;
  color: #818898;
}
/* ========== CONTACT FORM END ========== */

/* ========== CONTACT FAQ START ========== */
.contact-faq {
  width: 100%;
  padding: 80px 20px;
  background-color: #0d0f12;
}

.contact-faq__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
}

.contact-faq__title {
  margin: 0;
  font-family: "SF Pro-Bold", Helvetica;
  font-weight: 700;
  color: #efede7;
  font-size: 30px;
  letter-spacing: -0.75px;
  line-height: 36px;
  text-align: center;
}

.contact-faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact-faq__item {
  padding: 24px;
  background-color: #14161a;
  border: 1px solid #21242c;
  border-radius: 12px;
  box-shadow: 0 1px 2px #0000000d;
}

.contact-faq__question {
  margin: 0 0 8px;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 24px;
}

.contact-faq__answer {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}
/* ========== CONTACT FAQ END ========== */

/* ========== LOCATIONS LIST START ========== */
.site-wrapper--locations .page-content__main {
  gap: 0;
  padding-bottom: 0;
}

.locations-list {
  width: 100%;
  padding: 80px 20px 64px;
  background-color: #0d0f12;
}

.locations-list__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1336px;
  width: 100%;
  margin: 0 auto;
}

.location-card {
  width: 100%;
  background-color: #14161a;
  border: 1px solid #21242c;
  border-radius: 12px;
  box-shadow: 0 1px 2px #0000000d;
  overflow: hidden;
}

.location-card__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}

.location-card__map {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background-color: #1a1d23;
}

.location-card__map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.location-card__map-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: #54b679;
}

.location-card__map-text {
  margin: 0;
  padding-top: 8px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.location-card__map-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 6.5px 12px 7.5px;
  background-color: #0d0f12;
  border: 1px solid #21242c;
  border-radius: 10px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  text-decoration: none;
}

.location-card__map-link:hover {
  color: #54b679;
}

.location-card__map-link-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.location-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}

.location-card__title {
  margin: 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 18px;
  letter-spacing: -0.45px;
  line-height: 28px;
}

.location-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.location-card__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.location-card__detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #54b679;
}

.location-card__detail-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-card__detail-label {
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}

.location-card__detail-value,
.location-card__detail-link {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  text-decoration: none;
}

.location-card__detail-link:hover {
  color: #efede7;
}

.location-card__services {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-card__services-title {
  margin: 0;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.location-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.location-card__tag {
  padding: 4px 12px;
  background-color: #54b6791a;
  border-radius: 9999px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #54b679;
  font-size: 12px;
  letter-spacing: -0.15px;
  line-height: 16px;
}

.location-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 9.5px 16px 10.5px;
  background-color: #54b679;
  border-radius: 10px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #0d0f12;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  text-decoration: none;
}

.location-card__cta:hover {
  opacity: 0.92;
}
/* ========== LOCATIONS LIST END ========== */

/* ========== LOCATIONS CTA START ========== */
.locations-cta {
  width: 100%;
  padding: 64px 20px;
  background-color: #1a1d23;
}

.locations-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.locations-cta__title {
  margin: 0;
  font-family: "SF Pro-Bold", Helvetica;
  font-weight: 700;
  color: #efede7;
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 32px;
}

.locations-cta__text {
  margin: 0 0 16px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}

.locations-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8.5px 16px 9.5px;
  background-color: #0d0f12;
  border: 1px solid #21242c;
  border-radius: 10px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  text-decoration: none;
}

.locations-cta__button:hover {
  color: #54b679;
}
/* ========== LOCATIONS CTA END ========== */

/* ========== ABOUT INTRO START ========== */
.site-wrapper--about .page-content__main {
  gap: 0;
  padding-bottom: 0;
}

.about-intro {
  width: 100%;
  padding: 80px 20px 64px;
  background-color: #0d0f12;
}

.about-intro__inner {
  max-width: 1336px;
  width: 100%;
  margin: 0 auto;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.about-intro__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-intro__icon,
.about-values__card-icon {
  display: flex;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background-color: #54b6791a;
  border-radius: 12px;
}

.about-intro__icon-img,
.about-values__card-icon-img {
  display: block;
  width: 28px;
  max-width: none;
  height: 28px;
  object-fit: contain;
}

.about-intro__icon > i,
.about-values__card-icon > i,
.about-intro__icon-mark,
.about-values__card-icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 28px;
  line-height: 1;
  color: #54b679;
}

.about-intro__title {
  margin: 0;
  font-family: "SF Pro-Bold", Helvetica;
  font-weight: 700;
  color: #efede7;
  font-size: 30px;
  letter-spacing: -0.75px;
  line-height: 36px;
}

.about-intro__text {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}
/* ========== ABOUT INTRO END ========== */

/* ========== ABOUT VALUES START ========== */
.about-values {
  width: 100%;
  padding: 82px 20px 80px;
  background-color: #1a1d23;
}

.about-values__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.about-values__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 672px;
  text-align: center;
}

.about-values__title {
  margin: 0;
  font-family: "SF Pro-Bold", Helvetica;
  font-weight: 700;
  color: #efede7;
  font-size: 30px;
  letter-spacing: -0.75px;
  line-height: 36px;
}

.about-values__intro {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.about-values__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 24px 24px 26px;
  background-color: #14161a;
  border: 1px solid #21242c;
  border-radius: 12px;
  box-shadow: 0 1px 2px #0000000d;
}

.about-values__card-icon {
  margin-bottom: 10px;
}

.about-values__card-title {
  margin: 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 24px;
}

.about-values__card-text {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}
/* ========== ABOUT VALUES END ========== */

/* ========== ABOUT TEAM START ========== */
.about-team {
  width: 100%;
  padding: 80px 20px;
  background-color: #0d0f12;
}

.about-team__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.about-team__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 672px;
  text-align: center;
}

.about-team__title {
  margin: 0;
  font-family: "SF Pro-Bold", Helvetica;
  font-weight: 700;
  color: #efede7;
  font-size: 30px;
  letter-spacing: -0.75px;
  line-height: 36px;
}

.about-team__intro {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.about-team__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px;
  background-color: #14161a;
  border: 1px solid #21242c;
  border-radius: 12px;
  box-shadow: 0 1px 2px #0000000d;
}

.about-team__avatar {
  display: block;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #54b6791a;
}

.about-team__avatar-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.about-team__avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #54b6791a;
  color: #54b679;
  font-family: "SF Pro-Bold", Helvetica;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.15px;
}

.about-team__name {
  margin: 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 24px;
}

.about-team__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.about-team__role {
  margin: 0;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #54b679;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.about-team__qualification {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.about-team__bio {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}
/* ========== ABOUT TEAM END ========== */

/* ========== ABOUT TRUST START ========== */
.about-trust {
  width: 100%;
  padding: 66px 20px 64px;
  background-color: #54b679;
}

.about-trust__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.about-trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.about-trust__icon-mark {
  font-size: 48px;
  line-height: 1;
  color: #0d0f12;
}

.about-trust__title {
  margin: 0;
  font-family: "SF Pro-Bold", Helvetica;
  font-weight: 700;
  color: #0d0f12;
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 32px;
}

.about-trust__text {
  margin: 0 0 8px;
  max-width: 672px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #0d0f12e6;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}

.about-trust__registration {
  margin: 0;
  padding: 16px;
  background-color: #0d0f121a;
  border-radius: 12px;
  font-family: "SF Pro-Bold", Helvetica;
  font-weight: 400;
  color: #0d0f12;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.about-trust__registration-label {
  font-weight: 700;
}

@media (max-width: 767px) {
  .about-section--hidden-mobile,
  .services-section--hidden-mobile,
  .locations-section--hidden-mobile,
  .contact-section--hidden-mobile,
  .booking-section--hidden-mobile {
    display: none !important;
  }
}
/* ========== ABOUT TRUST END ========== */

/* ========== SERVICES PRIVATE START ========== */
.site-wrapper--services .page-content__main {
  gap: 0;
  padding-bottom: 0;
}

.services-private {
  width: 100%;
  padding: 80px 20px 64px;
  background-color: #0d0f12;
}

.services-private__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow--center {
  width: 100%;
  text-align: center;
}

.services-section__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-section__title {
  margin: 0;
  font-family: "SF Pro-Bold", Helvetica;
  font-weight: 700;
  color: #efede7;
  font-size: 30px;
  letter-spacing: -0.75px;
  line-height: 36px;
}

.services-section__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.services-section__badge {
  padding: 4px 16px;
  background-color: #54b679;
  border-radius: 9999px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #0d0f12;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.services-section__intro {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}

.services-private__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #14161a;
  border: 1px solid #21242c;
  border-radius: 12px;
  box-shadow: 0 1px 2px #0000000d;
}

.service-card__content {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.service-card__icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background-color: #54b6791a;
  border-radius: 12px;
}

.service-card__icon-img {
  width: 24px;
  max-width: none;
  height: 24px;
  object-fit: contain;
}

.service-card__icon > i,
.service-card__icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  color: #54b679;
}

.service-card__link-icon {
  width: auto;
  height: auto;
  max-width: none;
  font-size: 16px;
  line-height: 1;
}

i.service-card__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-card__title {
  margin: 6px 0 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 24px;
}

.service-card__description {
  margin: 6px 0 0;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #818898;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
}

.service-card__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px 24px;
}

.service-card__price {
  margin: 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 400;
  color: #54b679;
  font-size: 18px;
  letter-spacing: -0.45px;
  line-height: 28px;
}

.service-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 9.5px 16px 10.5px;
  background-color: #54b679;
  border-radius: 10px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #0d0f12;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  text-decoration: none;
}

.service-card__link:hover {
  opacity: 0.92;
}

.service-card__link-icon {
  width: 16px;
  height: 16px;
}
/* ========== SERVICES PRIVATE END ========== */

/* ========== SERVICES NHS START ========== */
.services-nhs {
  width: 100%;
  padding: 80px 20px;
  background-color: #1a1d23;
}

.services-nhs__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

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

.service-card--nhs {
  gap: 24px;
  padding: 24px;
}

.service-card__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-card--nhs .service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  border-radius: 10px;
  flex-shrink: 0;
}

.service-card--nhs .service-card__icon > i,
.service-card--nhs .service-card__icon-mark {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card--nhs .service-card__title {
  margin: 0;
}

.service-card--nhs .service-card__description {
  margin: 0;
}

.service-card__footer--nhs {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 16px;
}

.service-card__link--secondary {
  display: inline-flex;
  width: auto;
  padding: 8.5px 16px 9.5px;
  background-color: #0d0f12;
  border: 1px solid #21242c;
  color: #efede7;
}

.service-card__link--secondary:hover {
  color: #54b679;
  opacity: 1;
}
/* ========== SERVICES NHS END ========== */

/* ========== SERVICES CTA START ========== */
.services-cta {
  width: 100%;
  padding: 80px 20px;
  background-color: #0d0f12;
}

.services-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1336px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 32px;
  background-color: #54b679;
  border-radius: 16px;
  text-align: center;
}

.services-cta__title {
  margin: 0;
  font-family: "SF Pro-Bold", Helvetica;
  font-weight: 700;
  color: #0d0f12;
  font-size: 30px;
  letter-spacing: -0.75px;
  line-height: 36px;
}

.services-cta__text {
  margin: 0 0 16px;
  max-width: 576px;
  font-family: "SF Pro-Regular", Helvetica;
  font-weight: 400;
  color: #0d0f12e6;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}

.services-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11.5px 32px 12.5px;
  background-color: #1a1d23;
  border-radius: 10px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  text-decoration: none;
}

.services-cta__button:hover {
  opacity: 0.92;
}
/* ========== SERVICES CTA END ========== */

/* ========== HOME SHARED START ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== SECTION TYPOGRAPHY — home page (Figma reference) ========== */
.section-eyebrow {
  margin: 0;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #54b679;
  font-size: var(--section-eyebrow-size);
  letter-spacing: var(--section-eyebrow-letter-spacing);
  line-height: 20px;
  text-transform: uppercase;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  font-family: "Georgia-Bold", Helvetica;
  font-weight: 700;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line-height);
  letter-spacing: var(--section-title-letter-spacing);
  color: #efede7;
}

.section-title--center {
  align-items: center;
  text-align: center;
}

.section-title__line {
  display: block;
  color: #efede7;
}

.section-title__line--accent {
  display: block;
  width: fit-content;
  max-width: 100%;
  background: var(--section-title-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.home-glass-card {
  background: linear-gradient(161deg, rgba(20, 22, 26, 0.8) 0%, rgba(20, 22, 26, 0.4) 100%);
  border: 1px solid #54b6794c;
  border-radius: 16px;
  box-shadow: 0 0 20px #54b6791a, inset 0 0 20px 1px #54b6790d;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 32px;
  border-radius: 10px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.15px;
  line-height: 20px;
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}

.home-btn:hover {
  opacity: 0.92;
}

.home-btn--primary {
  background-color: #54b679;
  color: #0d0f12;
  box-shadow: 0 0 60px #40bf711a, 0 0 40px #40bf7133, 0 0 20px #40bf714c;
}

.home-btn--secondary {
  border: 1px solid #21242c80;
  color: #efede7;
  background: transparent;
}

.home-btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

i.home-btn__icon {
  width: auto;
  height: auto;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* ========== HOME SHARED END ========== */

/* ========== HOME HERO START ========== */
.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 750px;
  width: 100%;
  background-color: #0d0f12;
  overflow-x: clip;
  overflow-y: visible;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero__bg-image {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(https://c.animaapp.com/dB0OXxU3/img/div-absolute.png);
  background-size: cover;
  background-position: center left;
}

.home-hero__bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 15, 18, 1) 0%,
    rgba(13, 15, 18, 0.95) 30%,
    rgba(13, 15, 18, 0.7) 60%,
    rgba(13, 15, 18, 0) 100%
  );
}

.home-hero__glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(32px);
  pointer-events: none;
}

.home-hero__glow--green {
  width: 26.67%;
  height: 42.67%;
  top: 25%;
  left: 25%;
  transform: none;
  background-color: #54b6791a;
}

.home-hero__glow--gold {
  display: block;
  width: 17.78%;
  height: 28.44%;
  top: 46.56%;
  left: 48.89%;
  background-color: #dda73c1a;
}

.home-hero__bg-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(
    0deg,
    rgba(13, 15, 18, 1) 0%,
    rgba(13, 15, 18, 0.8) 40%,
    rgba(13, 15, 18, 0) 100%
  );
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max, 1400px);
  padding: 25px var(--page-gutter, 32px) 0;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 1025px) {
  .home-hero__inner {
    padding-right: 16px;
  }
}

.home-hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
  min-height: 708px;
  padding: 32px 0 96px;
}

.home-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  overflow: visible;
}

.home-hero__visual-media {
  display: none;
}

.home-hero__visual-overlay {
  display: none;
}

.home-hero__visual-stage {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero__stat-card {
  position: absolute;
  top: 80px;
  left: 32px;
  z-index: 3;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #54b6794c;
  box-shadow: 0 0 20px #54b6791a, inset 0 0 20px 1px #54b6790d;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    152deg,
    rgba(20, 22, 26, 0.8) 0%,
    rgba(20, 22, 26, 0.4) 100%
  );
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-hero__stat-card:hover {
  border-color: #54b67980;
  box-shadow:
    0 0 24px rgba(84, 182, 121, 0.28),
    inset 0 0 20px 1px rgba(84, 182, 121, 0.1);
}

.home-hero__stat-value {
  margin: 0;
  font-family: "Georgia-Bold", Helvetica;
  font-weight: 700;
  color: #54b679;
  font-size: 30px;
  line-height: 36px;
}

.home-hero__stat-label {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.home-hero__team-card {
  position: absolute;
  right: 0;
  bottom: 128px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #21242c80;
  box-shadow: none;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    161deg,
    rgba(20, 22, 26, 0.8) 0%,
    rgba(20, 22, 26, 0.4) 100%
  );
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-hero__team-card:hover {
  border-color: #54b6794c;
  box-shadow:
    0 0 20px rgba(84, 182, 121, 0.18),
    inset 0 0 20px 1px rgba(84, 182, 121, 0.08);
}

.home-hero__team-avatars {
  width: 44px;
  height: 28px;
  flex-shrink: 0;
}

.home-hero__team-title {
  margin: 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 600;
  color: #efede7;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.home-hero__team-subtitle {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}

.home-hero__play-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  box-shadow:
    0 0 60px #40bf711a,
    0 0 40px #40bf7133,
    0 0 20px #40bf714c;
  background: linear-gradient(
    145deg,
    rgba(84, 182, 121, 0.3) 0%,
    rgba(84, 182, 121, 0.05) 100%
  );
}

.home-hero__play-glow {
  display: none;
}

.home-hero__play-ring {
  position: absolute;
  width: 192px;
  height: 192px;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  background: linear-gradient(
    145deg,
    rgba(84, 182, 121, 0.4) 0%,
    rgba(84, 182, 121, 0) 100%
  );
  pointer-events: none;
}

.home-hero__trust-icon {
  position: relative;
  z-index: 1;
  width: 192px;
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.home-hero__trust-icon img {
  width: 64px;
  height: 64px;
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 23.5px;
  padding: 0 0 0 32px;
  background-color: transparent;
}

.home-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid #54b6794c;
  box-shadow: 0 0 20px #54b6791a, inset 0 0 20px 1px #54b6790d;
  backdrop-filter: blur(10px);
  background: linear-gradient(166deg, rgba(20, 22, 26, 0.8) 0%, rgba(20, 22, 26, 0.4) 100%);
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 14px;
  line-height: 20px;
}

.home-hero__badge img,
.home-hero__badge i {
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1;
  color: #54b679;
}

.home-hero__headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding-top: 16.5px;
  font-family: "Georgia-Bold", Helvetica;
  font-weight: 700;
  font-size: clamp(2.75rem, 4.8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.home-hero__headline-line {
  display: block;
  color: #efede7;
}

.home-hero__headline-line--accent {
  width: fit-content;
  max-width: 100%;
  background: var(--section-title-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.home-hero__intro {
  margin: 0;
  max-width: 512px;
  padding-top: 8.5px;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 18px;
  letter-spacing: -0.45px;
  line-height: 29.2px;
}

.home-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.home-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 14px;
  line-height: 20px;
}

.home-hero__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #54b679;
  flex-shrink: 0;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16.5px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .home-hero__grid {
    gap: 40px;
  }

  .home-hero__stat-card {
    top: 48px;
    left: 16px;
    padding: 18px;
  }

  .home-hero__team-card {
    bottom: 80px;
    padding: 18px;
  }

  .home-hero__play-wrap {
    width: 240px;
    height: 240px;
  }

  .home-hero__play-ring,
  .home-hero__trust-icon {
    width: 160px;
    height: 160px;
  }

  .home-hero__trust-icon img {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 1024px) {
  .home-hero {
    align-items: flex-start;
    min-height: auto;
  }

  .home-hero__inner {
    padding-bottom: 64px;
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 0;
  }

  .home-hero__visual {
    display: none;
  }

  .home-hero__bg-image {
    width: 100%;
    opacity: 0.35;
  }

  .home-hero__bg-image::after {
    background: linear-gradient(
      180deg,
      rgba(13, 15, 18, 0.75) 0%,
      rgba(13, 15, 18, 0.92) 100%
    );
  }

  .home-hero__glow--green {
    width: min(320px, 60vw);
    height: min(320px, 60vw);
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
  }

  .home-hero__glow--gold {
    display: none;
  }

  .home-hero__content {
    padding-left: 0;
  }
}
/* ========== HOME HERO END ========== */

/* ========== HOME PRIVATE SERVICES START ========== */
.home-private-services {
  position: relative;
  padding: 128px 20px;
  background-color: #0d0f12;
  overflow: hidden;
}

.home-private-services__glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(32px);
  pointer-events: none;
}

.home-private-services__glow--green {
  top: 80px;
  right: 0;
  left: auto;
  width: 320px;
  height: 320px;
  background-color: #54b6790d;
  filter: blur(32px);
}

.home-private-services__glow--gold {
  left: 0;
  right: auto;
  bottom: 160px;
  width: 240px;
  height: 240px;
  background-color: #dda73c0d;
}

.home-private-services__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: var(--container-max, 1400px);
  margin: 0 auto;
  padding: 0 var(--page-gutter, 32px);
}

.home-private-services__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 0;
}

.home-private-services__header-left {
  display: flex;
  flex-direction: column;
  gap: 17px;
  max-width: 576px;
}

.home-private-services__intro {
  margin: 0;
  max-width: 384px;
  margin-left: auto;
  text-align: right;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}

.home-private-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  padding-top: 0;
}

.home-featured-card {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #54b6794c;
  box-shadow: 0 0 20px #54b6791a, inset 0 0 20px 1px #54b6790d;
  backdrop-filter: blur(10px);
  background: linear-gradient(147deg, rgba(20, 22, 26, 0.8) 0%, rgba(20, 22, 26, 0.4) 100%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-featured-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  background: linear-gradient(
    151deg,
    rgba(84, 182, 121, 0.12) 0%,
    rgba(84, 182, 121, 0) 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.home-featured-card:hover {
  border-color: #54b67980;
  box-shadow:
    0 0 30px rgba(84, 182, 121, 0.22),
    inset 0 0 20px 1px rgba(84, 182, 121, 0.08);
}

.home-featured-card:hover::before {
  opacity: 1;
}

.home-featured-card:hover .home-featured-card__icon {
  box-shadow:
    0 0 20px rgba(84, 182, 121, 0.45),
    0 0 40px rgba(84, 182, 121, 0.18);
}

.home-featured-card__inner {
  display: flex;
  flex-direction: column;
  padding: 56px;
}

.home-featured-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(84, 182, 121, 1) 0%, rgba(102, 204, 141, 1) 100%);
  transition: box-shadow 0.3s ease;
}

.home-featured-card__icon img,
.home-featured-card__icon i {
  width: 32px;
  height: 32px;
  font-size: 32px;
  line-height: 1;
  color: #fff;
}

.home-featured-card__title {
  margin: 0 0 16px;
  font-family: "Georgia-Bold", Helvetica;
  font-weight: 700;
  color: #efede7;
  font-size: 30px;
  letter-spacing: -0.75px;
  line-height: 36px;
}

.home-featured-card__description {
  margin: 0 0 16px;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 18px;
  letter-spacing: -0.45px;
  line-height: 28px;
}

.home-featured-card__list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-featured-card__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 14px;
  line-height: 20px;
}

.home-featured-card__list-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #54b679;
  flex-shrink: 0;
}

.home-featured-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #54b679;
  font-size: 14px;
  text-decoration: none;
}

.home-featured-card__link img {
  width: 16px;
  height: 16px;
}

.home-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #21242c80;
  backdrop-filter: blur(10px);
  background: linear-gradient(152deg, rgba(20, 22, 26, 0.8) 0%, rgba(20, 22, 26, 0.4) 100%);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-service-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: linear-gradient(
    167deg,
    rgba(84, 182, 121, 0.12) 0%,
    rgba(84, 182, 121, 0) 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.home-service-card:hover {
  border-color: #54b6794c;
  box-shadow:
    0 0 20px rgba(84, 182, 121, 0.18),
    inset 0 0 20px 1px rgba(84, 182, 121, 0.08);
}

.home-service-card:hover::before {
  opacity: 1;
}

.home-service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background-color: #54b6791a;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.home-service-card:hover .home-service-card__icon {
  background: linear-gradient(145deg, #54b679 0%, #66cc8d 100%);
  box-shadow: 0 0 16px rgba(84, 182, 121, 0.35);
}

.home-service-card__icon img,
.home-service-card__icon i {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  color: #54b679;
  transition: color 0.3s ease, filter 0.3s ease;
}

.home-service-card:hover .home-service-card__icon img {
  filter: brightness(0) saturate(100%);
}

.home-service-card:hover .home-service-card__icon i {
  color: #fff;
}

.home-service-card__title {
  margin: 0 0 8px;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 600;
  color: #efede7;
  font-size: 18px;
  line-height: 28px;
}

.home-service-card__description {
  margin: 0 0 16px;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 14px;
  line-height: 22px;
}

.home-service-card__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-service-card__features li {
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 12px;
  line-height: 16px;
}

.home-service-card__arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 20px;
  height: 20px;
  opacity: 0.35;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.home-service-card:hover .home-service-card__arrow {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(64%) sepia(47%) saturate(459%) hue-rotate(93deg)
    brightness(93%) contrast(87%);
}

.home-private-services__footer {
  display: flex;
  justify-content: center;
  padding-top: 48px;
}

@media (max-width: 900px) {
  .home-private-services__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .home-featured-card {
    grid-row: auto;
    grid-column: auto;
  }
}
/* ========== HOME PRIVATE SERVICES END ========== */

/* ========== HOME STATS START ========== */
.home-stats {
  position: relative;
  overflow: hidden;
  background-color: #0d0f12;
}

.home-stats__bg {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
}

.home-stats__bg-dark {
  flex: 0 0 60%;
  background-color: #0d0f12;
}

.home-stats__bg-accent {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: linear-gradient(
    144deg,
    rgba(84, 182, 121, 1) 0%,
    rgba(102, 204, 141, 1) 100%
  );
}

.home-stats__bg-mask {
  position: absolute;
  top: 0;
  left: -96px;
  width: 192px;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.home-stats__bg-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-stats__bg-ring--1 {
  top: 25%;
  right: 40px;
  width: 128px;
  height: 20.78%;
  border: 1px solid #0d0f1233;
}

.home-stats__bg-ring--2 {
  top: 35.5%;
  right: 96px;
  width: 192px;
  height: 31.17%;
  border: 1px solid #0d0f121a;
}

.home-stats__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 60%;
  max-width: 864px;
  padding: 128px 32px 128px max(52px, calc((100vw - var(--container-max, 1400px)) / 2 + 52px));
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.home-stats__header {
  display: flex;
  flex-direction: column;
  gap: 17.5px;
  padding-top: 2.5px;
}

.home-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 32px;
  max-width: 640px;
  width: 100%;
}

.home-stat-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.home-stat-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid #54b6794c;
  box-shadow: 0 0 20px #54b6791a, inset 0 0 20px 1px #54b6790d;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    145deg,
    rgba(20, 22, 26, 0.8) 0%,
    rgba(20, 22, 26, 0.4) 100%
  );
}

.home-stat-card__icon img,
.home-stat-card__icon i {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  color: #54b679;
}

.home-stat-card__value {
  margin: 0;
  font-family: "Georgia-Bold", Helvetica;
  font-weight: 700;
  color: #efede7;
  font-size: 48px;
  line-height: 48px;
  white-space: nowrap;
}

.home-stat-card__label {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 14px;
  letter-spacing: 0.35px;
  line-height: 20px;
  white-space: nowrap;
}
/* ========== HOME STATS END ========== */

/* ========== HOME WHY CHOOSE START ========== */
.home-why-choose {
  position: relative;
  padding: 128px 20px;
  background-color: #0d0f12;
  overflow: hidden;
}

.home-why-choose__glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(32px);
  pointer-events: none;
}

.home-why-choose__glow--green {
  top: 80px;
  left: 40px;
  width: 160px;
  height: 160px;
  background-color: #54b6790d;
  filter: blur(20px);
}

.home-why-choose__glow--gold {
  right: 80px;
  bottom: 160px;
  width: 240px;
  height: 240px;
  background-color: #dda73c0d;
}

.home-why-choose__inner {
  position: relative;
  max-width: var(--container-max, 1400px);
  margin: 0 auto;
  padding: 0 var(--page-gutter, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.home-why-choose__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 672px;
}

.home-why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.home-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #21242c80;
  backdrop-filter: blur(10px);
  background: linear-gradient(152deg, rgba(20, 22, 26, 0.8) 0%, rgba(20, 22, 26, 0.4) 100%);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-feature-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: linear-gradient(
    151deg,
    rgba(84, 182, 121, 0.12) 0%,
    rgba(84, 182, 121, 0) 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.home-feature-card:hover {
  border-color: #54b6794c;
  box-shadow:
    0 0 20px rgba(84, 182, 121, 0.18),
    inset 0 0 20px 1px rgba(84, 182, 121, 0.08);
}

.home-feature-card:hover::before {
  opacity: 1;
}

.home-feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: #54b6791a;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.home-feature-card:hover .home-feature-card__icon {
  border: 1px solid #54b6794c;
  background: linear-gradient(145deg, rgba(20, 22, 26, 0.8) 0%, rgba(20, 22, 26, 0.4) 100%);
  box-shadow:
    0 0 20px rgba(84, 182, 121, 0.35),
    inset 0 0 20px 1px rgba(84, 182, 121, 0.08);
}

.home-feature-card__icon img {
  width: 24px;
  height: 24px;
}

.home-feature-card__icon-mark {
  font-size: 24px;
  line-height: 1;
  color: #54b679;
}

.home-feature-card__title {
  margin: 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 600;
  color: #efede7;
  font-size: 18px;
  line-height: 28px;
}

.home-feature-card__description {
  margin: 0;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 14px;
  line-height: 22px;
}

.home-feature-card__divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(84, 182, 121, 0.5) 0%, rgba(84, 182, 121, 0) 100%);
}

@media (max-width: 1024px) {
  .home-why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .home-why-choose__grid {
    grid-template-columns: 1fr;
  }
}
/* ========== HOME WHY CHOOSE END ========== */

/* ========== HOME TESTIMONIALS START ========== */
.home-testimonials {
  position: relative;
  padding: 128px 20px;
  background-color: #0d0f12;
  overflow: hidden;
}

.home-testimonials__glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(32px);
  pointer-events: none;
}

.home-testimonials__glow--green {
  top: 0;
  left: 360px;
  width: 384px;
  height: 384px;
  background-color: #54b6790d;
}

.home-testimonials__glow--gold {
  right: 360px;
  bottom: 0;
  width: 320px;
  height: 320px;
  background-color: #dda73c0d;
}

.home-testimonials__inner {
  position: relative;
  max-width: var(--container-max, 1400px);
  margin: 0 auto;
  padding: 0 var(--page-gutter, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.home-testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.home-testimonials__rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
}

.home-testimonials__stars {
  display: flex;
  gap: 2px;
}

.home-testimonials__stars img {
  width: 20px;
  height: 20px;
}

.home-testimonials__score {
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 600;
  color: #efede7;
  font-size: 16px;
}

.home-testimonials__count {
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 16px;
}

.home-testimonials__slider {
  width: 100%;
  max-width: 896px;
}

.home-testimonial-card {
  position: relative;
  width: 100%;
  padding: 64px 64px 104px;
  border-radius: 24px;
  border: 1px solid #54b6794c;
  box-shadow: 0 0 20px #54b6791a, inset 0 0 20px 1px #54b6790d;
  backdrop-filter: blur(10px);
  background: linear-gradient(157deg, rgba(20, 22, 26, 0.8) 0%, rgba(20, 22, 26, 0.4) 100%);
}

.home-testimonials__slides {
  position: relative;
  min-height: 280px;
}

.home-testimonial-slide {
  margin: 0;
  animation: home-testimonial-fade 0.35s ease;
}

.home-testimonial-slide[hidden] {
  display: none;
}

@keyframes home-testimonial-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-testimonial-card__quote-icon {
  position: absolute;
  top: 33px;
  left: 33px;
  width: 128px;
  height: 128px;
  opacity: 0.15;
}

.home-testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
}

.home-testimonial-card__stars img {
  width: 20px;
  height: 20px;
}

.home-testimonial-card__quote {
  margin: 0 0 32px;
  font-family: "Georgia-Regular", Helvetica;
  font-weight: 400;
  color: #efede7;
  font-size: 24px;
  line-height: 32px;
}

.home-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-testimonial-card__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.home-testimonial-card__avatar-wrap::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 182, 121, 0.35) 0%, rgba(84, 182, 121, 0) 70%);
  pointer-events: none;
}

.home-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(84, 182, 121, 1) 0%, rgba(102, 204, 141, 1) 100%);
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 600;
  color: #0d0f12;
  font-size: 14px;
}

.home-testimonial-card__name {
  margin: 0;
  font-family: "SF Pro-Semibold", Helvetica;
  font-weight: 600;
  color: #efede7;
  font-size: 16px;
}

.home-testimonial-card__location {
  margin: 2px 0 0;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 14px;
}

.home-testimonial-card__service {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 9999px;
  background-color: #54b6791a;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #54b679;
  font-size: 12px;
}

.home-testimonial-card__controls {
  position: absolute;
  left: 41px;
  right: 41px;
  bottom: 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-testimonials__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-testimonials__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background-color: #8188984c;
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.home-testimonials__dot.is-active {
  width: 32px;
  background-color: #54b679;
}

.home-testimonials__dot:focus-visible {
  outline: 2px solid #54b679;
  outline-offset: 2px;
}

.home-testimonials__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-testimonials__arrow {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #21242c80;
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-testimonials__arrow img {
  width: 16px;
  height: 16px;
}

.home-testimonials__arrow:hover,
.home-testimonials__arrow:focus-visible {
  border-color: #54b67980;
  box-shadow: 0 0 0 1px #54b67933;
}

.home-testimonials__arrow:focus-visible {
  outline: 2px solid #54b679;
  outline-offset: 2px;
}

.home-testimonials__platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.home-testimonials__platform {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-testimonials__platform-stars {
  display: flex;
  gap: 2px;
  color: #edbe5e;
}

.home-testimonials__platform-stars img {
  width: 16px;
  height: 16px;
}

.home-testimonials__platform-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: #edbe5e;
}

.home-testimonials__platform-star::before {
  color: #edbe5e;
}

.home-testimonials__platform-star.is-filled {
  opacity: 1;
}

.home-testimonials__platform-star.is-empty {
  opacity: 0.22;
}

.home-testimonials__platform-label {
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 14px;
}

@media (max-width: 768px) {
  .home-testimonial-card {
    padding: 32px 24px 96px;
  }

  .home-testimonials__slides {
    min-height: 320px;
  }

  .home-testimonial-card__controls {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .home-testimonial-card__quote {
    font-size: 18px;
    line-height: 28px;
  }
}
/* ========== HOME TESTIMONIALS END ========== */

/* ========== HOME SERVICE RANGE START ========== */
.home-service-range {
  position: relative;
  padding: 128px 20px;
  background-color: #0d0f12;
  overflow: hidden;
}

.home-service-range__inner {
  position: relative;
  max-width: var(--container-max, 1400px);
  margin: 0 auto;
  padding: 0 var(--page-gutter, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.home-service-range__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.home-service-range__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}

.home-service-panel {
  padding: 40px;
  border-radius: 24px;
}

.home-service-panel__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.home-service-panel__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #54b6791a;
}

.home-service-panel__icon img,
.home-service-panel__icon i {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  color: #54b679;
}

.home-service-panel__title {
  margin: 0;
  font-family: "Georgia-Bold", Helvetica;
  font-weight: 700;
  color: #efede7;
  font-size: 24px;
  line-height: 32px;
}

.home-service-panel__badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 9999px;
  background-color: #54b679;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #0d0f12;
  font-size: 12px;
}

.home-service-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-service-panel__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #21242c80;
  background-color: #0d0f1280;
  color: #efede7;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.home-service-panel:not(.home-service-panel--nhs) .home-service-panel__link:hover {
  border-color: #54b679;
  background-color: rgba(84, 182, 121, 0.08);
  box-shadow: 0 0 16px rgba(84, 182, 121, 0.12);
}

.home-service-panel--nhs .home-service-panel__icon {
  background: linear-gradient(145deg, #dda73c 0%, #edbe5e 100%);
}

.home-service-panel--nhs .home-service-panel__icon i {
  color: #fff;
}

.home-service-panel--nhs .home-service-panel__badge {
  background-color: #dda73c33;
  color: #dda73c;
}

.home-service-panel--nhs .home-service-panel__link-icon {
  background-color: #dda73c1a;
}

.home-service-panel--nhs .home-service-panel__link:hover {
  border-color: #dda73c;
  background-color: rgba(221, 167, 60, 0.08);
  box-shadow: 0 0 16px rgba(221, 167, 60, 0.12);
}

.home-service-panel--nhs .home-service-panel__link:hover .home-service-panel__link-icon {
  background: linear-gradient(145deg, #dda73c 0%, #edbe5e 100%);
}

.home-service-panel--nhs .home-service-panel__link:hover .home-service-panel__link-icon img {
  filter: brightness(0) saturate(100%);
}

.home-service-panel--nhs .home-service-panel__link:hover .home-service-panel__link-icon i {
  color: #0d0f12;
}

.home-service-panel--nhs .home-service-panel__link:hover .home-service-panel__link-arrow {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(72%) sepia(37%) saturate(620%) hue-rotate(6deg)
    brightness(92%) contrast(90%);
}

.home-service-panel__link-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-service-panel__link-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #54b6791a;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.home-service-panel__link-icon img {
  width: 20px;
  height: 20px;
  transition: filter 0.25s ease;
}

.home-service-panel__link-icon i {
  font-size: 20px;
  line-height: 1;
  color: #54b679;
  transition: color 0.25s ease;
}

.home-service-panel--nhs .home-service-panel__link-icon i {
  color: #dda73c;
}

.home-service-panel:not(.home-service-panel--nhs) .home-service-panel__link:hover .home-service-panel__link-icon {
  background: linear-gradient(145deg, #54b679 0%, #66cc8d 100%);
}

.home-service-panel:not(.home-service-panel--nhs) .home-service-panel__link:hover .home-service-panel__link-icon img {
  filter: brightness(0) saturate(100%);
}

.home-service-panel:not(.home-service-panel--nhs) .home-service-panel__link:hover .home-service-panel__link-icon i {
  color: #0d0f12;
}

.home-service-panel__link-text {
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 16px;
}

.home-service-panel__link-arrow {
  width: 20px;
  height: 20px;
  opacity: 0.35;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.home-service-panel:not(.home-service-panel--nhs) .home-service-panel__link:hover .home-service-panel__link-arrow {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(64%) sepia(47%) saturate(459%) hue-rotate(93deg)
    brightness(93%) contrast(87%);
}

.home-service-range__footer {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .home-service-range__grid {
    grid-template-columns: 1fr;
  }
}
/* ========== HOME SERVICE RANGE END ========== */

/* ========== HOME LOCATIONS START ========== */
.home-locations {
  padding: 128px 52px;
  background-color: #0d0f12;
}

.home-locations__inner {
  max-width: var(--container-max, 1400px);
  margin: 0 auto;
  padding: 0 var(--page-gutter, 32px);
}

.home-locations__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.home-locations__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.home-locations__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-locations__intro {
  margin: 0;
  max-width: 448px;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}

.home-locations__map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #54b6794c;
  box-shadow: 0 0 20px #54b6791a, inset 0 0 20px 1px #54b6790d;
  aspect-ratio: 1.33;
  background: linear-gradient(149deg, rgba(20, 22, 26, 0.8) 0%, rgba(20, 22, 26, 0.4) 100%);
}

.home-locations__map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.home-locations__map-markers {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-locations__map-marker {
  position: absolute;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.home-locations__map-marker-dot {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background-color: #54b679;
  box-shadow: 0 0 12px rgba(84, 182, 121, 0.85);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-locations__map-marker-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(84, 182, 121, 0.45);
  background: rgba(84, 182, 121, 0.12);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.home-locations__map-marker.is-active .home-locations__map-marker-dot {
  transform: scale(1.15);
}

.home-locations__map-marker.is-active .home-locations__map-marker-ring {
  transform: scale(1.35);
  border-color: rgba(84, 182, 121, 0.8);
  background: rgba(84, 182, 121, 0.2);
}

.home-locations__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-locations__map-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #21242c80;
  backdrop-filter: blur(10px);
  background: linear-gradient(145deg, rgba(20, 22, 26, 0.8) 0%, rgba(20, 22, 26, 0.4) 100%);
  text-align: center;
}

.home-locations__map-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.home-locations__map-badge-fa {
  font-size: 32px;
  line-height: 1;
  color: #54b679;
}

.home-locations__map-badge img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.home-locations__map-count {
  margin: 0;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 16px;
}

.home-locations__map-label {
  margin: 4px 0 0;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 14px;
}

.home-locations__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-location-card {
  position: relative;
  display: block;
  padding: 24px;
  border-radius: 16px;
  text-decoration: none;
  color: #818898;
  border: 1px solid #21242c80;
  box-shadow: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.home-location-card.home-glass-card {
  border-color: #21242c80;
  box-shadow: none;
}

.home-location-card:hover {
  transform: translate(-2px, -2px);
  border-color: #54b67980;
  box-shadow:
    0 24px 44px rgba(84, 182, 121, 0.14),
    0 0 24px rgba(84, 182, 121, 0.24),
    inset 0 0 20px 1px rgba(84, 182, 121, 0.1);
}

.home-location-card.is-active {
  transform: translate(-2px, -2px);
  border-color: #54b679;
  box-shadow:
    0 24px 44px rgba(84, 182, 121, 0.16),
    0 0 24px rgba(84, 182, 121, 0.3),
    inset 0 0 20px 1px rgba(84, 182, 121, 0.12);
}

.home-location-card__title {
  margin: 0 0 16px;
  padding-right: 28px;
  font-family: "Georgia-Bold", Helvetica;
  font-weight: 700;
  color: #efede7;
  font-size: 18px;
  letter-spacing: -0.45px;
  line-height: 28px;
  transition: color 0.3s ease;
}

.home-location-card:hover .home-location-card__title {
  color: #efede7;
}

.home-location-card__details {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-location-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 14px;
  line-height: 20px;
}

.home-location-card__detail img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.home-location-card__detail-icon {
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  color: #54b679;
}

.home-location-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 20px;
  height: 20px;
  opacity: 0.35;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.home-location-card:hover .home-location-card__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
  filter: brightness(0) saturate(100%) invert(64%) sepia(47%) saturate(459%) hue-rotate(93deg)
    brightness(93%) contrast(87%);
}

.home-locations__view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid #21242c80;
  text-decoration: none;
  font-family: "SF Pro-Medium", Helvetica;
  font-weight: 500;
  color: #efede7;
  font-size: 14px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-locations__view-all:hover {
  border-color: #54b6794c;
  box-shadow: 0 0 16px rgba(84, 182, 121, 0.12);
}

@media (max-width: 1024px) {
  .home-locations {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .home-locations__grid {
    grid-template-columns: 1fr;
  }
}
/* ========== HOME LOCATIONS END ========== */

/* ========== HOME CTA START ========== */
.home-cta {
  position: relative;
  padding: 128px 52px;
  overflow: hidden;
  background-color: #0d0f12;
}

.home-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url(https://c.animaapp.com/dB0OXxU3/img/div-absolute-2.png);
  background-size: cover;
  background-position: center;
}

.home-cta__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 15, 18, 1) 0%, rgba(13, 15, 18, 0.95) 50%, rgba(13, 15, 18, 0.8) 100%);
}

.home-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(337deg, rgba(84, 182, 121, 0) 40%, rgba(84, 182, 121, 0.1) 40%, rgba(84, 182, 121, 0.1) 60%, rgba(84, 182, 121, 0) 60%);
}

.home-cta__glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(32px);
  pointer-events: none;
}

.home-cta__glow--green {
  top: 50%;
  left: 360px;
  transform: translateY(-50%);
  width: 384px;
  height: 384px;
  background-color: #54b6791a;
}

.home-cta__glow--gold {
  right: 360px;
  bottom: 0;
  width: 256px;
  height: 256px;
  background-color: #dda73c1a;
}

.home-cta__inner {
  position: relative;
  max-width: var(--container-max, 1400px);
  margin: 0 auto;
  padding: 0 var(--page-gutter, 32px);
}

.home-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.home-cta__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-cta__intro {
  margin: 0;
  max-width: 512px;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
}

.home-cta__stats {
  position: relative;
}

.home-cta__stats-deco {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid #54b6791a;
  transform: translate(32px, 32px);
}

.home-cta__stats-deco--inner {
  transform: translate(16px, 16px);
  border-color: #54b67933;
}

.home-cta__stats-card {
  position: relative;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(158deg, rgba(20, 22, 26, 0.8) 0%, rgba(20, 22, 26, 0.4) 100%);
  border: 1px solid #54b6794c;
  box-shadow: 0 0 20px #54b6791a, inset 0 0 20px 1px #54b6790d;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-cta__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.home-cta__stat-value {
  margin: 0;
  font-family: "Georgia-Bold", Helvetica;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
}

.home-cta__stat-value--accent {
  width: fit-content;
  max-width: 100%;
  background: var(--cta-stat-value-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.home-cta__stat-label {
  margin: 4px 0 0;
  font-family: "SF Pro-Regular", Helvetica;
  color: #818898;
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 900px) {
  .home-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .home-cta__grid {
    grid-template-columns: 1fr;
  }
}
/* ========== HOME CTA END ========== */
