/*
Theme Name: YS Gan
Theme URI: https://ys-gan-26.local
Author: YS Gan
Description: Clean custom block theme for the YS Gan 2026 website.
Requires at least: 6.7
Requires PHP: 7.2
Version: 1.0.10
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ys-gan
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

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

.ys-site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e2e8e8;
  box-shadow: 0 4px 8px rgba(10, 46, 46, 0.1);
  font-family: Inter, Manrope, sans-serif;
  position: sticky;
  top: 0;
  z-index: 100;
}

.ys-desktop-header {
  backdrop-filter: blur(6px);
  padding: 0 24px;
}

.ys-header-container {
  align-items: center;
  display: flex;
  height: 72px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.ys-header-logo {
  display: flex;
  flex: 0 0 auto;
  width: 180px;
}

.ys-header-logo img {
  display: block;
  height: 50px;
  object-fit: contain;
  width: 180px;
}

.ys-nav {
  align-items: center;
  display: flex;
  gap: 32px;
}

.ys-nav__link,
.ys-mobile-menu__link {
  align-items: center;
  background: transparent;
  border: 0;
  color: #3d5050;
  cursor: pointer;
  display: flex;
  font-family: Inter, Manrope, sans-serif;
  font-size: 13px;
  font-weight: 500;
  gap: 8px;
  letter-spacing: 1px;
  line-height: 22px;
  padding: 0 0 4px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
}

.ys-nav__link::after,
.ys-mobile-menu__link::after {
  background: #1f8585;
  bottom: -1px;
  content: '';
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: opacity 160ms ease;
}

.ys-nav__link:hover,
.ys-nav__link:focus-visible,
.ys-nav__link.is-active,
.ys-mobile-menu__link:hover,
.ys-mobile-menu__link:focus-visible,
.ys-mobile-menu__link.is-active {
  color: #1a6b6b;
}

.ys-nav__link:hover::after,
.ys-nav__link:focus-visible::after,
.ys-nav__link.is-active::after,
.ys-mobile-menu__link:hover::after,
.ys-mobile-menu__link:focus-visible::after,
.ys-mobile-menu__link.is-active::after {
  opacity: 1;
}

.ys-nav__link img.ys-nav__chevron,
.ys-mobile-menu__link img.ys-nav__chevron {
  display: block;
  height: 5px;
  width: 8px;
}

button.ys-nav__link {
  appearance: none;
}

.ys-nav__item {
  position: relative;
}

.ys-nav__item--dropdown::after {
  content: '';
  height: 16px;
  left: -12px;
  position: absolute;
  right: -12px;
  top: 100%;
  z-index: 1;
}

.ys-nav__dropdown {
  background: #fff;
  border: 1px solid #e2e8e8;
  box-shadow: 0 16px 32px rgba(10, 46, 46, 0.14);
  display: grid;
  gap: 2px;
  left: 50%;
  min-width: 280px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 14px);
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  z-index: 2;
}

.ys-nav__item:hover .ys-nav__dropdown,
.ys-nav__item:focus-within .ys-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.ys-nav__dropdown a,
.ys-mobile-menu__submenu a {
  color: #3d5050;
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  padding: 10px 12px;
  text-decoration: none;
}

.ys-nav__dropdown a:hover,
.ys-nav__dropdown a:focus-visible,
.ys-mobile-menu__submenu a:hover,
.ys-mobile-menu__submenu a:focus-visible {
  /* background: #f1f8f7; */
  color: #1a6b6b;
}

.ys-nav__dropdown a:hover,
.ys-nav__dropdown a.is-active,
.ys-mobile-menu__submenu a.is-active {
  color: #1a6b6b;
  text-decoration: underline;
  text-decoration-color: #1f8585;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.ys-header-actions,
.ys-mobile-header__actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 24px;
}

@media (max-width: 1180px) {
  .ys-header-container {
    gap: 20px;
  }

  .ys-header-logo,
  .ys-header-logo img {
    width: 160px;
  }

  .ys-nav {
    gap: 22px;
  }

  .ys-header-actions {
    gap: 16px;
  }

  .ys-whatsapp-button {
    padding-left: 14px;
    padding-right: 14px;
  }
}

.ys-language-toggle {
  align-items: center;
  border: 1px solid #e2e8e8;
  display: flex;
  height: 40px;
  overflow: hidden;
  padding: 1px;
}

.ys-language-toggle a {
  align-items: center;
  color: #162323;
  display: flex;
  font-size: 13px;
  font-weight: 500;
  height: 38px;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 22px;
  min-width: 48px;
  padding: 0 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.ys-language-toggle a:hover {
  background-color: rgba(16, 185, 129, 0.25);
}

.ys-language-toggle a.is-active {
  background: #0f3d3d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 20px;
}

.ys-whatsapp-button {
  align-items: center;
  background: #25d366;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.5px;
  line-height: 22px;
  padding: 8px 16px;
  text-decoration: none;
  white-space: nowrap;
}

.ys-whatsapp-button:hover,
.ys-whatsapp-button:focus-visible {
  background: #059669;
  color: #fff;
  box-shadow: 0 4px 12px 0 rgba(37, 211, 102, 0.3);
}

.ys-whatsapp-button__icon {
  display: block;
  height: 18px;
  position: relative;
  width: 18px;
}

.ys-whatsapp-button__icon img {
  display: block;
  position: absolute;
}

.ys-whatsapp-button__bubble {
  height: 18.11px;
  inset: 0 0 auto 0;
  width: 18px;
}

.ys-whatsapp-button__phone {
  height: 8.41px;
  left: 4.51px;
  top: 4.8px;
  width: 9.06px;
}

.ys-home-whatsapp-float {
  display: none;
}

@media (max-width: 1024px) {
  .ys-home-whatsapp-float {
    background: #25d366;
    border-radius: 50%;
    bottom: 24px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    position: fixed;
    right: 24px;
    text-decoration: none;
    width: 56px;
    z-index: 200;
  }

  .ys-home-whatsapp-float:hover,
  .ys-home-whatsapp-float:focus-visible {
    background: #1fb85a;
  }

  .ys-home-whatsapp-float__icon {
    display: block;
    height: 32px;
    position: relative;
    width: 32px;
  }

  .ys-home-whatsapp-float__bubble {
    height: 32px;
    inset: 0;
    position: absolute;
    width: 32px;
  }

  .ys-home-whatsapp-float__phone {
    height: 14.9px;
    left: 8px;
    position: absolute;
    top: 8.5px;
    width: 16px;
  }
}

.ys-mobile-header {
  display: none;
}

.ys-mobile-menu-toggle {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 8px;
  width: 40px;
}

.ys-mobile-menu-toggle img {
  display: block;
  height: 24px;
  width: 24px;
}

.ys-mobile-menu-toggle img.ys-mobile-menu-toggle__close,
.ys-site-header.is-mobile-open .ys-mobile-menu-toggle img.ys-mobile-menu-toggle__open {
  display: none;
}

.ys-site-header.is-mobile-open .ys-mobile-menu-toggle img.ys-mobile-menu-toggle__close {
  display: block;
}

.ys-page {
  margin-top: 0;
}

.ys-home-hero {
  align-items: center;
  background: linear-gradient(137.227deg, #0a2e2e 0%, #0f3d3d 50%, #145050 100%);
  color: #fff;
  display: flex;
  font-family: Inter, Manrope, sans-serif;
  isolation: isolate;
  margin: 0;
  min-height: 600px;
  overflow: hidden;
  padding: 0 24px;
  position: relative;
  width: 100%;
}

.ys-home-hero__media,
.ys-home-hero__media::before {
  inset: 0;
  position: absolute;
}

.ys-home-hero__media {
  margin: 0 !important;
  max-width: none !important;
  width: auto !important;
  z-index: -1;
}

.ys-home-hero__media::before {
  content: '';
  z-index: 1;
}

.ys-home-hero__image {
  display: block;
  filter: brightness(1.5);
  height: 100%;
  max-width: none;
  object-fit: fill;
  transform: scale(1);
  object-position: 50% 45%;
  opacity: 0.8;
  width: 100%;
}

.ys-home-hero__inner {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0;
  max-width: 1200px;
  width: 100%;
}

.ys-home-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 !important;
  max-width: 600px;
  width: 100%;
}

.ys-home-hero__content > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ys-home-hero__eyebrow-wrap {
  align-items: center;
  border: 1px solid #4fd4b8;
  border-radius: 30px;
  color: #4fd4b8;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 20px;
  margin: 0;
  padding: 9px 16px;
  text-transform: uppercase;
  width: fit-content;
}

.ys-home-hero__eyebrow-item + .ys-home-hero__eyebrow-item::before {
  content: ' · ';
  white-space: pre;
}

.ys-home-hero__title {
  color: #fff;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 80px;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}

.ys-home-hero__title span {
  color: #4fd4b8;
}

.ys-home-hero__subhead {
  border-left: 3px solid #2bb5a0;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 30px;
  margin: 0;
  max-width: 600px;
  padding-left: 16px;
}

.ys-home-hero__actions {
  display: flex;
  flex-direction: row;
  align-self: start;
  gap: 16px;
  margin: 0 !important;
}

@media (max-width: 1024px) {
  .ys-home-hero__actions {
    flex-direction: column;
    margin: 0 !important;
  }
}

.ys-home-hero__button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  gap: 7px;
  height: 50px;
  align-self: start;
  justify-content: center;
  letter-spacing: 0.5px;
  line-height: 22px;
  padding: 4px 24px;
  text-decoration: none;
  white-space: nowrap;
}

.ys-home-hero__button--primary {
  background: #2bb5a0;
  color: #fff;
}

.ys-home-hero__button--secondary {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  color: #1a6b6b;
}

.ys-button--primary:hover {
  background: #4fd4b8;
  box-shadow: 0 8px 24px 0 rgba(43, 181, 160, 0.3);
}

.ys-button--secondary:hover {
  background: var(--color-white-80, rgba(255, 255, 255, 0.8));
}

.ys-home-hero__button img {
  display: block;
  height: 18px;
  width: 18px;
}

/* Animation 1: homepage hero intro */
.ys-page--home-intro .ys-home-hero__media,
.ys-page--who-we-are-intro .ys-who-we-are-hero__media,
.ys-page--service-intro .ys-page-hero__media {
  animation: ys-home-hero-image-enter 1400ms ease-out both;
}

.ys-page--who-we-are-intro .ys-who-we-are-hero__media {
  animation-duration: 1700ms;
}

.ys-page--home-intro .ys-home-hero__eyebrow-wrap,
.ys-page--home-intro .ys-home-hero__title,
.ys-page--home-intro .ys-home-hero__subhead,
.ys-page--home-intro .ys-home-hero__actions,
.ys-page--who-we-are-intro .ys-who-we-are-hero__title,
.ys-page--who-we-are-intro .ys-who-we-are-hero__subhead,
.ys-page--service-intro .ys-page-hero__title,
.ys-page--service-intro .ys-page-hero__subhead,
.ys-page--service-intro .ys-page-hero__actions,
.ys-page--insight-intro .ys-insight-archive-hero__copy,
.ys-page--insight-intro .ys-insight-archive-hero__search,
.ys-page--insight-intro .ys-insight-archive-hero__tabs {
  opacity: 0;
  will-change: opacity, transform;
}

.ys-page--home-intro .ys-home-hero__eyebrow-wrap {
  animation: ys-home-hero-content-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.ys-page--home-intro .ys-home-hero__title {
  animation: ys-home-hero-content-enter 820ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.ys-page--who-we-are-intro .ys-who-we-are-hero__title {
  animation: ys-home-hero-content-enter 980ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.ys-page--home-intro .ys-home-hero__subhead {
  animation: ys-home-hero-content-enter 820ms cubic-bezier(0.22, 1, 0.36, 1) 340ms both;
}

.ys-page--who-we-are-intro .ys-who-we-are-hero__subhead {
  animation: ys-home-hero-content-enter 980ms cubic-bezier(0.22, 1, 0.36, 1) 340ms both;
}

.ys-page--home-intro .ys-home-hero__actions {
  animation: ys-home-hero-content-enter 820ms cubic-bezier(0.22, 1, 0.36, 1) 460ms both;
}

.ys-page--service-intro .ys-page-hero__title {
  animation: ys-home-hero-content-enter 980ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.ys-page--service-intro .ys-page-hero__subhead {
  animation: ys-home-hero-content-enter 980ms cubic-bezier(0.22, 1, 0.36, 1) 340ms both;
}

.ys-page--service-intro .ys-page-hero__actions {
  animation: ys-home-hero-content-enter 980ms cubic-bezier(0.22, 1, 0.36, 1) 460ms both;
}

.ys-page--insight-intro .ys-insight-archive-hero__copy {
  animation: ys-home-hero-content-enter 820ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.ys-page--insight-intro .ys-insight-archive-hero__search {
  animation: ys-home-hero-content-enter 900ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.ys-page--insight-intro .ys-insight-archive-hero__tabs {
  animation: ys-home-hero-content-enter 900ms cubic-bezier(0.22, 1, 0.36, 1) 340ms both;
}

@keyframes ys-home-hero-content-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ys-home-hero-image-enter {
  from {
    opacity: 0;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ys-page--home-intro .ys-home-hero__media,
  .ys-page--home-intro .ys-home-hero__eyebrow-wrap,
  .ys-page--home-intro .ys-home-hero__title,
  .ys-page--home-intro .ys-home-hero__subhead,
  .ys-page--home-intro .ys-home-hero__actions,
  .ys-page--who-we-are-intro .ys-who-we-are-hero__media,
  .ys-page--who-we-are-intro .ys-who-we-are-hero__title,
  .ys-page--who-we-are-intro .ys-who-we-are-hero__subhead,
  .ys-page--service-intro .ys-page-hero__media,
  .ys-page--service-intro .ys-page-hero__title,
  .ys-page--service-intro .ys-page-hero__subhead,
  .ys-page--service-intro .ys-page-hero__actions,
  .ys-page--insight-intro .ys-insight-archive-hero__copy,
  .ys-page--insight-intro .ys-insight-archive-hero__search,
  .ys-page--insight-intro .ys-insight-archive-hero__tabs,
  .ys-home-stat--animation-2 .ys-home-stat__item,
  .ys-who-we-are-credentials--animation-2 .ys-who-we-are-credentials__logo-item,
  .ys-statutory-audit-how-it-works--animation-2 .ys-statutory-audit-how-it-works__step,
  .ys-home-services--animation-3 .ys-home-services__head,
  .ys-home-services--animation-3 .ys-home-services__card,
  .ys-home-services--animation-3 .ys-home-services__controls,
  .ys-who-we-are-leadership--animation-3 .ys-who-we-are-leadership__title,
  .ys-who-we-are-leadership--animation-3 .ys-who-we-are-leadership__card,
  .ys-non-statutory-audit-services--animation-3 .ys-non-statutory-audit-services__head,
  .ys-non-statutory-audit-services--animation-3 .ys-non-statutory-audit-services__card,
  .ys-non-statutory-audit-services--animation-3 .ys-non-statutory-audit-services__controls,
  .ys-compilation-of-financial-statements-services--animation-3
    .ys-compilation-of-financial-statements-services__head,
  .ys-compilation-of-financial-statements-services--animation-3
    .ys-compilation-of-financial-statements-services__card,
  .ys-compilation-of-financial-statements-services--animation-3
    .ys-compilation-of-financial-statements-services__controls,
  .ys-home-sectors--animation-4 .ys-home-sectors__header,
  .ys-home-sectors--animation-4 .ys-home-sectors__card,
  .ys-who-we-are-vision-mission--animation-4 .ys-who-we-are-vision-mission__section,
  .ys-who-we-are-associates--animation-4 .ys-who-we-are-associates__heading,
  .ys-who-we-are-associates--animation-4 .ys-who-we-are-associates__card,
  .ys-insight-archive-results--animation-4 .ys-insight-archive-results__grid,
  .ys-insight-archive-results--animation-4 .ys-insight-card,
  .ys-insight-archive-results--animation-4 .ys-insight-archive-results__pagination,
  .ys-insight-archive-results--animation-4 .ys-insight-archive-results__empty,
  .ys-review-engagements-comparison--animation-4 .ys-review-engagements-comparison__title,
  .ys-review-engagements-comparison--animation-4 .ys-review-engagements-comparison__table-shell,
  .ys-home-usp--animation-5 .ys-home-usp__header,
  .ys-home-usp--animation-5 .ys-home-usp__card,
  .ys-home-usp--animation-5 .ys-home-usp__badge,
  .ys-who-we-are-core-value--animation-5 .ys-who-we-are-core-value__title,
  .ys-who-we-are-core-value--animation-5 .ys-who-we-are-core-value__card,
  .ys-who-we-are-core-value--animation-5 .ys-who-we-are-core-value__icon-wrap,
  .ys-statutory-audit-why-choose-us--animation-5 .ys-statutory-audit-why-choose-us__head,
  .ys-statutory-audit-why-choose-us--animation-5 .ys-statutory-audit-why-choose-us__card,
  .ys-statutory-audit-why-choose-us--animation-5 .ys-statutory-audit-why-choose-us__icon-wrap,
  .ys-home-testimonials--animation-6 .ys-home-testimonials__header,
  .ys-home-testimonials--animation-6 .ys-home-testimonials__viewport,
  .ys-home-testimonials--animation-6 .ys-home-testimonials__card,
  .ys-home-testimonials--animation-6 .ys-home-testimonials__nav,
  .ys-statutory-audit-support--animation-6 .ys-statutory-audit-support__head,
  .ys-statutory-audit-support--animation-6 .ys-statutory-audit-support__viewport,
  .ys-statutory-audit-support--animation-6 .ys-statutory-audit-support__card,
  .ys-statutory-audit-support--animation-6 .ys-statutory-audit-support__controls,
  .ys-statutory-audit-mfrs--animation-6 .ys-statutory-audit-mfrs__head,
  .ys-statutory-audit-mfrs--animation-6 .ys-statutory-audit-mfrs__viewport,
  .ys-statutory-audit-mfrs--animation-6 .ys-statutory-audit-mfrs__card,
  .ys-statutory-audit-mfrs--animation-6 .ys-statutory-audit-mfrs__controls,
  .ys-review-engagements-services--animation-6 .ys-review-engagements-services__head,
  .ys-review-engagements-services--animation-6 .ys-review-engagements-services__viewport,
  .ys-review-engagements-services--animation-6 .ys-review-engagements-services__card,
  .ys-review-engagements-services--animation-6 .ys-review-engagements-services__controls,
  .ys-review-engagements-services--animation-6 .ys-review-engagements-services__message,
  .ys-home-cta--animation-7 .ys-home-cta__left,
  .ys-home-cta--animation-7 .ys-home-cta__card,
  .ys-contact-us--animation-7 .ys-contact-us__header,
  .ys-contact-us--animation-7 .ys-contact-us__card,
  .ys-contact-us--animation-7 .ys-contact-us__info,
  .ys-who-we-are-split--animation-7 .ys-who-we-are-stat__column,
  .ys-who-we-are-split--animation-7 .ys-who-we-are-founder__media,
  .ys-who-we-are-split--animation-7 .ys-who-we-are-founder__content,
  .ys-service-copy--animation-7 .ys-statutory-audit-stat__inner,
  .ys-service-copy--animation-7 .ys-non-statutory-audit-stat__inner,
  .ys-service-copy--animation-7 .ys-review-engagements-stat__inner,
  .ys-service-copy--animation-7 .ys-compilation-of-financial-statements-stat__inner,
  .ys-faq-section--animation-7 .ys-faq-section__head,
  .ys-faq-section--animation-7 .ys-faq-section__list,
  .ys-global-footer--animation-8 .ys-footer-brand,
  .ys-global-footer--animation-8 .ys-footer-nav,
  .ys-global-footer--animation-8 .ys-footer-contact,
  .ys-global-footer--animation-8 .ys-global-footer__bottom {
    animation: none;
    clip-path: none;
    opacity: 1;
    transform: none;
  }
}

.ys-who-we-are-hero {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: Inter, Manrope, sans-serif;
  isolation: isolate;
  margin: 0;
  min-height: 530px;
  overflow: hidden;
  padding: 0 24px;
  position: relative;
  width: 100%;
}

.ys-who-we-are-hero__media {
  inset: 0;
  position: absolute;
}

.ys-who-we-are-hero__media {
  margin: 0 !important;
  max-width: none !important;
  overflow: hidden;
  pointer-events: none;
  width: auto !important;
  z-index: -1;
}

.ys-who-we-are-hero__image {
  display: block;
  height: 100%;
  width: 100%;
  max-width: none;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  z-index: 1;
}

.ys-who-we-are-hero__image--desktop {
  display: block;
}

.ys-who-we-are-hero__image--mobile {
  display: none;
}

.ys-who-we-are-hero__inner {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0;
  max-width: 1200px;
  width: 100%;
}

.ys-who-we-are-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 !important;
  max-width: 600px;
  width: 100%;
}

.ys-who-we-are-hero__content > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ys-who-we-are-hero__title {
  color: #fff;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 80px;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}

.ys-who-we-are-hero__title span {
  color: #4fd4b8;
}

.ys-who-we-are-hero__subhead {
  /* border-left: 3px solid #2bb5a0; */
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 30px;
  margin: 0;
  max-width: 600px;
  padding: 8px 0;
}

@media (max-width: 1024px) {
  .ys-home-hero__image {
    object-fit: fill;
    transform: scale(1);
    object-position: 35% 50%;
    opacity: 0.8;
    width: 100%;
  }

  .ys-who-we-are-hero__image--desktop {
    display: none;
  }

  .ys-who-we-are-hero__image--mobile {
    display: block;
  }
}

.ys-home-stat {
  background: linear-gradient(180deg, #ffffff 50.481%, #adebdd 100%);
  padding: 45px 24px;
  width: 100%;
}

.ys-home-stat__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-home-stat__item {
  align-items: center;
  /* box-shadow: 0 16px 24px rgba(79, 212, 184, 0.2); */
  display: flex;
  flex: 0 1 302px;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  min-height: 82px;
  padding: 0 28px;
  margin-top: 0;
}

.ys-home-stat__value {
  color: #1c9a91;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  margin: 0;
  text-align: center;
}

.ys-home-stat__label {
  color: #1e293b;
  font-family: Inter, Manrope, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 26px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

/* Animation 2: homepage stats reveal */
.ys-home-stat--animation-2.is-ready .ys-home-stat__item {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.94);
  will-change: opacity, transform;
}

.ys-who-we-are-credentials--animation-2.is-ready .ys-who-we-are-credentials__logo-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.94);
  will-change: opacity, transform;
}

.ys-home-stat--animation-2.is-animated .ys-home-stat__item {
  animation: ys-home-stat-card-enter 760ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.ys-who-we-are-credentials--animation-2.is-animated .ys-who-we-are-credentials__logo-item {
  animation: ys-home-stat-card-enter 760ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.ys-home-stat--animation-2.is-animated .ys-home-stat__item:nth-child(2) {
  animation-delay: 120ms;
}

.ys-who-we-are-credentials--animation-2.is-animated
  .ys-who-we-are-credentials__logo-item:nth-child(2) {
  animation-delay: 120ms;
}

.ys-home-stat--animation-2.is-animated .ys-home-stat__item:nth-child(3) {
  animation-delay: 240ms;
}

.ys-who-we-are-credentials--animation-2.is-animated
  .ys-who-we-are-credentials__logo-item:nth-child(3) {
  animation-delay: 240ms;
}

.ys-statutory-audit-how-it-works--animation-2.is-ready .ys-statutory-audit-how-it-works__step {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.94);
  will-change: opacity, transform;
}

.ys-statutory-audit-how-it-works--animation-2.is-animated .ys-statutory-audit-how-it-works__step {
  animation: ys-home-stat-card-enter 760ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.ys-statutory-audit-how-it-works--animation-2.is-animated
  .ys-statutory-audit-how-it-works__step:nth-child(2) {
  animation-delay: 120ms;
}

.ys-statutory-audit-how-it-works--animation-2.is-animated
  .ys-statutory-audit-how-it-works__step:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes ys-home-stat-card-enter {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.94);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -6px, 0) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.ys-home-services {
  background: #fff;
  padding: 96px 24px;
  width: 100%;
}

.ys-home-services__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-home-services__inner > * {
  max-width: none !important;
}

.ys-home-services__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ys-home-services__label {
  color: #1f8585;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 20px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.ys-home-services__title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-align: center;
}

.ys-home-services__viewport {
  overflow: visible;
  width: 100%;
}

.ys-home-services__track {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  transition: transform 240ms ease;
  width: 100%;
}

.ys-home-services__card {
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 0 16px 0 16px;
  display: flex;
  flex-direction: column;
  flex: 0 0 280px;
  gap: 34.5px;
  min-height: 432px;
  overflow: hidden;
  padding: 29px;
  width: 280px;
}

.ys-home-services__card:hover {
  border: 1px solid #a0e8d8;
  background: var(--color-cyan-5715, rgba(79, 212, 184, 0.15));
  box-shadow: 0 16px 48px 0 rgba(79, 212, 184, 0.2);
}

.ys-home-services__card:hover .ys-home-services__card-title {
  color: #1c9a91;
}

.ys-home-services__card:hover .ys-home-services__card-text {
  color: #5c6e6e;
}

.ys-home-services__card:hover
  .ys-home-services__body
  .ys-home-services__link
  .ys-home-services__card-hyperlink_text {
  color: #1f8585;
}

.ys-home-services__image-wrap {
  flex: 0 0 auto;
  height: 150px;
  overflow: hidden;
  width: 100%;
}

.ys-home-services__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ys-home-services__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}

.ys-home-services__copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ys-home-services__card-title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  height: 48px;
}

.ys-home-services__card-text {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

.ys-home-services__link {
  align-items: center;
  color: #1a6b6b;
  display: inline-flex;
  font-family: Inter, Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 6px;
  letter-spacing: 0.5px;
  line-height: 22px;
  text-decoration: none;
}

.ys-home-services__link img {
  display: block;
  height: 12px;
  width: 12px;
}

.ys-home-services__controls {
  display: none;
}

.ys-page-hero {
  align-items: center;
  background: linear-gradient(140.744deg, #0a2e2e 0%, #0f3d3d 50%, #145050 100%);
  display: flex;
  isolation: isolate;
  margin: 0;
  min-height: 530px;
  overflow: hidden;
  padding: 100px min(8.333vw, 120px);
  position: relative;
}

.ys-page-hero__media {
  inset: 0;
  margin: 0 !important;
  max-width: none !important;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: auto !important;
  z-index: -2;
}

.ys-page-hero__image {
  display: block;
  height: 100%;
  left: 0;
  max-width: none;
  object-fit: fill;
  object-position: center center;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
}

.ys-page-hero__image--desktop {
  display: block;
}

.ys-page-hero__image--mobile {
  display: none;
}

.ys-page-hero__inner {
  margin-bottom: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  max-width: 1200px;
  width: 100%;
}

.ys-page-hero__container {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  max-width: 898px;
  width: 100%;
}

.ys-page-hero__inner > *,
.ys-page-hero__container > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ys-page-hero__title {
  color: #fff;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 80px;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}

.ys-page-hero__title span {
  color: #1c9a91;
}

.ys-page-hero__subhead {
  color: rgba(255, 255, 255, 0.7);
  font-family: Inter, Manrope, sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 36px;
  margin: 0;
  max-width: 650px;
  padding: 10px 0;
  text-align: left;
}

.ys-page-hero__actions {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 !important;
}

.ys-page-hero__button {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1a6b6b;
  display: inline-flex;
  font-family: Inter, Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 7px;
  letter-spacing: 0.5px;
  line-height: 22px;
  min-height: 52px;
  padding: 14px 24px;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.ys-page-hero__button:hover,
.ys-page-hero__button:focus-visible {
  background: rgba(255, 255, 255, 0.8);
  /* border-color: #f1f8f7; */
  color: #1a6b6b;
}

.ys-page-hero__button img {
  display: block;
  height: 12px;
  width: 12px;
}

.ys-page-hero--who-we-are {
  background: #0a2e2e;
}

.ys-page-hero--who-we-are .ys-page-hero__image {
  object-fit: cover;
  object-position: 85% 50%;
}

.ys-page-hero--statutory-audit {
  background: #0a2e2e;
}

.ys-page-hero--statutory-audit .ys-page-hero__image {
  object-fit: cover;
  object-position: center center;
}

.ys-page-hero--statutory-audit .ys-page-hero__actions {
  margin-top: -4px !important;
}

.ys-page-hero--non-statutory-audit {
  background: #0a2e2e;
}

.ys-page-hero--non-statutory-audit .ys-page-hero__image {
  object-fit: cover;
  object-position: center center;
}

.ys-page-hero--non-statutory-audit .ys-page-hero__actions {
  margin-top: -4px !important;
}

.ys-page-hero--review-engagements {
  background: #0a2e2e;
}

.ys-page-hero--review-engagements .ys-page-hero__image {
  object-fit: cover;
  object-position: center center;
}

.ys-page-hero--review-engagements .ys-page-hero__actions {
  margin-top: -4px !important;
}

.ys-page-hero--compilation-of-financial-statements {
  background: #0a2e2e;
}

.ys-page-hero--compilation-of-financial-statements .ys-page-hero__image {
  object-fit: cover;
  object-position: center center;
}

.ys-page-hero--compilation-of-financial-statements .ys-page-hero__actions {
  margin-top: -4px !important;
}

.ys-non-statutory-audit-stat {
  background: #fff;
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-non-statutory-audit-stat__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-non-statutory-audit-stat__inner > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-non-statutory-audit-stat__title,
.ys-non-statutory-audit-stat__copy,
.ys-non-statutory-audit-stat__list {
  color: #0f172a;
  margin: 0;
  text-align: center;
}

.ys-non-statutory-audit-stat__title {
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 56px;
  max-width: 1008px;
}

.ys-non-statutory-audit-stat__copy,
.ys-non-statutory-audit-stat__list,
.ys-non-statutory-audit-stat__item {
  font-family: Inter, Manrope, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 30px;
}

.ys-non-statutory-audit-stat__copy + .ys-non-statutory-audit-stat__copy {
  margin-top: 0;
}

.ys-non-statutory-audit-stat__title + .ys-non-statutory-audit-stat__copy {
  margin-top: 32px;
}

.ys-non-statutory-audit-stat__list {
  list-style-position: inside;
  margin-top: 0;
  max-width: 1020px;
  padding: 0;
}

.ys-non-statutory-audit-stat__item {
  margin: 0;
}

.ys-non-statutory-audit-stat__item strong {
  font-weight: 700;
}

.ys-non-statutory-audit-services {
  background: linear-gradient(131.837deg, #0a2e2e 0%, #0f3d3d 50%, #145050 100%);
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-non-statutory-audit-services__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-non-statutory-audit-services__inner > *,
.ys-non-statutory-audit-services__grid > *,
.ys-non-statutory-audit-services__card > *,
.ys-non-statutory-audit-services__card-body > * {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-non-statutory-audit-services__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ys-non-statutory-audit-services__eyebrow,
.ys-non-statutory-audit-services__title,
.ys-non-statutory-audit-services__intro {
  color: #fff;
  margin: 0;
  text-align: center;
}

.ys-non-statutory-audit-services__eyebrow {
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 20px;
  text-transform: uppercase;
}

.ys-non-statutory-audit-services__title {
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
}

.ys-non-statutory-audit-services__intro {
  font-family: Inter, Manrope, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  max-width: 750px;
  padding-top: 3px;
}

.ys-non-statutory-audit-services__grid {
  align-items: stretch;
  display: flex;
  gap: 80px;
  justify-content: center;
  margin: 0 !important;
  width: 100%;
}

.ys-non-statutory-audit-services__viewport {
  overflow: visible;
  width: 100%;
}

.ys-non-statutory-audit-services__grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ys-non-statutory-audit-services__grid::-webkit-scrollbar {
  display: none;
}

.ys-non-statutory-audit-services__item {
  display: flex;
  flex: 0 1 320px;
  margin: 0 !important;
  min-width: 0;
  width: 320px;
}

.ys-non-statutory-audit-services__card {
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 0 16px 0 16px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 30px;
  min-height: 257px;
  overflow: hidden;
  padding: 29px 29px 38px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  width: 100%;
}

.ys-non-statutory-audit-services__card:hover {
  border-color: #a0e8d8;
  background:
    linear-gradient(
      0deg,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 0%,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 100%
    ),
    #fff;
  box-shadow: 0 16px 48px 0 rgba(79, 212, 184, 0.2);
}

.ys-non-statutory-audit-services__icon-wrap {
  align-items: center;
  background: rgba(28, 154, 145, 0.2);
  border-radius: 10px;
  color: #1c9a91;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    color 180ms ease;
  width: 44px;
}

.ys-non-statutory-audit-services__card:hover .ys-non-statutory-audit-services__icon-wrap {
  background: #1c9a91;
  color: #fff;
}

.ys-non-statutory-audit-services__icon {
  display: block;
  height: 24px;
  width: 24px;
}

.ys-non-statutory-audit-services__card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.ys-non-statutory-audit-services__card-title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  min-height: 48px;
}

.ys-non-statutory-audit-services__card:hover .ys-non-statutory-audit-services__card-title {
  color: #1c9a91;
}

.ys-non-statutory-audit-services__copy {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

.ys-non-statutory-audit-services__controls {
  display: none;
}

.ys-review-engagements-services {
  background: linear-gradient(130.311deg, #0a2e2e 0%, #0f3d3d 50%, #145050 100%);
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-review-engagements-services__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-review-engagements-services__inner > *,
.ys-review-engagements-services__grid > *,
.ys-review-engagements-services__card > *,
.ys-review-engagements-services__card-body > * {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-review-engagements-services__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ys-review-engagements-services__title,
.ys-review-engagements-services__intro,
.ys-review-engagements-services__message {
  color: #fff;
  margin: 0;
  text-align: center;
}

.ys-review-engagements-services__title {
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
}

.ys-review-engagements-services__intro {
  font-family: Inter, Manrope, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  max-width: 750px;
  padding-top: 3px;
}

.ys-review-engagements-services__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
}

.ys-review-engagements-services__viewport::-webkit-scrollbar {
  display: none;
}

.ys-review-engagements-services__grid {
  align-items: stretch;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin: 0 !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: max-content;
}

.ys-review-engagements-services__grid::-webkit-scrollbar {
  display: none;
}

.ys-review-engagements-services__item {
  display: flex;
  flex: 0 0 285px;
  margin: 0 !important;
  min-width: 0;
  width: 285px;
}

.ys-review-engagements-services__card {
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 0 16px 0 16px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 30px;
  min-height: 245px;
  overflow: hidden;
  padding: 29px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  width: 100%;
}

.ys-review-engagements-services__card:hover {
  border-color: #a0e8d8;
  background:
    linear-gradient(
      0deg,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 0%,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 100%
    ),
    #fff;
  box-shadow: 0 16px 48px 0 rgba(79, 212, 184, 0.2);
}

.ys-review-engagements-services__icon-wrap {
  align-items: center;
  background: rgba(28, 154, 145, 0.2);
  border-radius: 10px;
  color: #1c9a91;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    color 180ms ease;
  width: 44px;
}

.ys-review-engagements-services__card:hover .ys-review-engagements-services__icon-wrap {
  background: #1c9a91;
  color: #fff;
}

.ys-review-engagements-services__icon {
  display: block;
  height: 24px;
  width: 24px;
}

.ys-review-engagements-services__card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.ys-review-engagements-services__card-title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  min-height: 48px;
}

.ys-review-engagements-services__card:hover .ys-review-engagements-services__card-title {
  color: #1c9a91;
}

.ys-review-engagements-services__copy {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

.ys-review-engagements-services__message {
  align-self: center;
  color: #4fd4b8;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  max-width: 932px;
}

.ys-review-engagements-services__controls {
  display: none;
}

.ys-compilation-of-financial-statements-services {
  background: linear-gradient(132.797deg, #0a2e2e 0%, #0f3d3d 50%, #145050 100%);
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-compilation-of-financial-statements-services__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-compilation-of-financial-statements-services__inner > *,
.ys-compilation-of-financial-statements-services__grid > *,
.ys-compilation-of-financial-statements-services__card > *,
.ys-compilation-of-financial-statements-services__card-body > * {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-compilation-of-financial-statements-services__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ys-compilation-of-financial-statements-services__title,
.ys-compilation-of-financial-statements-services__intro {
  color: #fff;
  margin: 0;
  text-align: center;
}

.ys-compilation-of-financial-statements-services__title {
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
}

.ys-compilation-of-financial-statements-services__intro {
  font-family: Inter, Manrope, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  max-width: 750px;
  padding-top: 3px;
}

.ys-compilation-of-financial-statements-services__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
}

.ys-compilation-of-financial-statements-services__viewport::-webkit-scrollbar {
  display: none;
}

.ys-compilation-of-financial-statements-services__grid {
  align-items: stretch;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin: 0 !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: max-content;
}

.ys-compilation-of-financial-statements-services__grid::-webkit-scrollbar {
  display: none;
}

.ys-compilation-of-financial-statements-services__item {
  display: flex;
  flex: 0 0 285px;
  margin: 0 !important;
  min-width: 0;
  width: 285px;
}

.ys-compilation-of-financial-statements-services__card {
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 0 16px 0 16px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 30px;
  min-height: 341px;
  overflow: hidden;
  padding: 29px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  width: 100%;
}

.ys-compilation-of-financial-statements-services__card:hover {
  border-color: #a0e8d8;
  background:
    linear-gradient(
      0deg,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 0%,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 100%
    ),
    #fff;
  box-shadow: 0 16px 48px 0 rgba(79, 212, 184, 0.2);
}

.ys-compilation-of-financial-statements-services__icon-wrap {
  align-items: center;
  background: rgba(28, 154, 145, 0.2);
  border-radius: 10px;
  color: #1c9a91;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    color 180ms ease;
  width: 44px;
}

.ys-compilation-of-financial-statements-services__card:hover
  .ys-compilation-of-financial-statements-services__icon-wrap {
  background: #1c9a91;
  color: #fff;
}

.ys-compilation-of-financial-statements-services__icon-stack {
  display: block;
  height: 24px;
  position: relative;
  width: 24px;
}

.ys-compilation-of-financial-statements-services__icon {
  display: block;
  height: 24px;
  width: 24px;
}

.ys-compilation-of-financial-statements-services__icon--base,
.ys-compilation-of-financial-statements-services__icon--user,
.ys-compilation-of-financial-statements-services__icon--check {
  left: 0;
  position: absolute;
  top: 0;
}

.ys-compilation-of-financial-statements-services__icon--user,
.ys-compilation-of-financial-statements-services__icon--check {
  height: 9px;
  left: 7px;
  top: 10px;
  width: 9px;
}

.ys-compilation-of-financial-statements-services__card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.ys-compilation-of-financial-statements-services__card-title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  min-height: 48px;
}

.ys-compilation-of-financial-statements-services__card:hover
  .ys-compilation-of-financial-statements-services__card-title {
  color: #1c9a91;
}

.ys-compilation-of-financial-statements-services__copy {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

.ys-compilation-of-financial-statements-services__controls {
  display: none;
}

.ys-review-engagements-comparison {
  background: #fff;
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-review-engagements-comparison__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-review-engagements-comparison__inner > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-review-engagements-comparison__title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-align: center;
}

.ys-review-engagements-comparison__table-wrap {
  -ms-overflow-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  width: 100%;
}

.ys-review-engagements-comparison__table-wrap::-webkit-scrollbar {
  display: none;
}

.ys-review-engagements-comparison__table-shell {
  border: 1px solid #e2e8e8;
  border-radius: 0 16px 0 16px;
  overflow: hidden;
  width: 1200px;
}

.ys-review-engagements-comparison__table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 1200px;
}

.ys-review-engagements-comparison__table thead tr {
  background: rgba(16, 185, 129, 0.25);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}

.ys-review-engagements-comparison__table th,
.ys-review-engagements-comparison__table td {
  color: #0f3d3d;
  padding: 24px 16px;
  text-align: left;
  vertical-align: top;
}

.ys-review-engagements-comparison__table thead th {
  font-family: Inter, Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 20px;
  text-transform: uppercase;
}

.ys-review-engagements-comparison__table tbody th,
.ys-review-engagements-comparison__table tbody td {
  font-family: Inter, Manrope, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 22px;
}

.ys-review-engagements-comparison__table tbody th {
  font-weight: 700;
}

.ys-review-engagements-comparison__table tbody td {
  font-weight: 400;
}

.ys-review-engagements-comparison__table tbody td strong {
  font-weight: 700;
}

.ys-review-engagements-comparison__table tbody tr.is-alt {
  background: rgba(43, 181, 160, 0.08);
}

@media (max-width: 1024px) {
  .ys-non-statutory-audit-services__grid {
    flex-direction: column;
    gap: 24px;
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 0;
  }

  .ys-non-statutory-audit-services__item {
    flex: 1 1 auto;
    width: 100%;
  }

  .ys-review-engagements-services__grid {
    flex-direction: column;
    gap: 24px;
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 0;
  }

  .ys-review-engagements-services__item {
    flex: 1 1 auto;
    width: 100%;
  }

  .ys-compilation-of-financial-statements-services__grid {
    flex-direction: column;
    gap: 24px;
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 0;
  }

  .ys-compilation-of-financial-statements-services__item {
    flex: 1 1 auto;
    width: 100%;
  }

  .ys-review-engagements-comparison__table-shell,
  .ys-review-engagements-comparison__table {
    width: 850px;
    margin: 0 auto;
    /* min-width: 1200px; */
  }
}

.ys-statutory-audit-stat,
.ys-review-engagements-stat,
.ys-compilation-of-financial-statements-stat {
  background: #fff;
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-statutory-audit-stat__inner,
.ys-review-engagements-stat__inner,
.ys-compilation-of-financial-statements-stat__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-statutory-audit-stat__inner > *,
.ys-review-engagements-stat__inner > *,
.ys-compilation-of-financial-statements-stat__inner > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-statutory-audit-stat__title,
.ys-statutory-audit-stat__copy,
.ys-review-engagements-stat__title,
.ys-review-engagements-stat__copy,
.ys-compilation-of-financial-statements-stat__title,
.ys-compilation-of-financial-statements-stat__copy {
  color: #0f172a;
  margin: 0;
  text-align: center;
}

.ys-statutory-audit-stat__title,
.ys-review-engagements-stat__title,
.ys-compilation-of-financial-statements-stat__title {
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 56px;
  max-width: 1008px;
}

.ys-statutory-audit-stat__copy,
.ys-review-engagements-stat__copy,
.ys-compilation-of-financial-statements-stat__copy {
  font-family: Inter, Manrope, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 30px;
  max-width: 1020px;
}

.ys-statutory-audit-support {
  background: #1c9a91;
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-statutory-audit-support__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-statutory-audit-support__inner > *,
.ys-statutory-audit-support__grid > *,
.ys-statutory-audit-support__card > *,
.ys-statutory-audit-support__card-body > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-statutory-audit-support__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ys-statutory-audit-support__title,
.ys-statutory-audit-support__intro {
  color: #fff;
  margin: 0;
  text-align: center;
}

.ys-statutory-audit-support__title {
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
}

.ys-statutory-audit-support__intro {
  font-family: Inter, Manrope, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  padding-top: 3px;
}

.ys-statutory-audit-support__grid {
  align-items: stretch;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0 !important;
  width: 100%;
}

.ys-statutory-audit-support__viewport {
  overflow: visible;
  width: 100%;
}

.ys-statutory-audit-support__grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ys-statutory-audit-support__grid::-webkit-scrollbar {
  display: none;
}

.ys-statutory-audit-support__grid-item {
  display: flex;
  flex: 0 0 285px;
  margin: 0 !important;
  min-width: 0;
  width: 285px;
}

.ys-statutory-audit-support__card {
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 0 16px 0 16px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 30px;
  min-height: 338px;
  overflow: hidden;
  padding: 29px 29px 38px;
  width: 100%;
}

.ys-statutory-audit-support__card:hover {
  border-color: #a0e8d8;
  box-shadow: 0 16px 48px 0 rgba(79, 212, 184, 0.2);
  background:
    linear-gradient(
      0deg,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 0%,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 100%
    ),
    #fff;
}

.ys-statutory-audit-support__icon-wrap {
  align-items: center;
  background: rgba(28, 154, 145, 0.2);
  border-radius: 10px;
  color: #1c9a91;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    color 180ms ease;
  width: 44px;
}

.ys-statutory-audit-support__card:hover .ys-statutory-audit-support__icon-wrap {
  background: #1c9a91;
  color: #fff;
}

.ys-statutory-audit-support__card:hover .ys-statutory-audit-support__card-title {
  color: #1c9a91;
}

.ys-statutory-audit-support__icon {
  display: block;
  height: 24px;
  width: 24px;
}

.ys-statutory-audit-support__icon--deadline {
  height: 24px;
  position: relative;
  width: 24px;
}

.ys-statutory-audit-support__icon-layer {
  display: block;
  position: absolute;
}

.ys-statutory-audit-support__icon-layer--deadline-a {
  height: 20px;
  left: 2px;
  top: 2px;
  width: 20px;
}

.ys-statutory-audit-support__icon-layer--deadline-b {
  height: 8px;
  left: 12px;
  top: 6px;
  width: 8px;
}

.ys-statutory-audit-support__card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.ys-statutory-audit-support__card-title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  min-height: var(--ys-support-card-title-height, auto);
}

.ys-statutory-audit-support__copy {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

.ys-statutory-audit-support__controls {
  display: none;
}

.ys-statutory-audit-why-choose-us {
  background: linear-gradient(135.54deg, #0a2e2e 0%, #0f3d3d 50%, #145050 100%);
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-statutory-audit-why-choose-us__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-statutory-audit-why-choose-us__inner > *,
.ys-statutory-audit-why-choose-us__grid > *,
.ys-statutory-audit-why-choose-us__card > *,
.ys-statutory-audit-why-choose-us__card-body > * {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-statutory-audit-why-choose-us__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ys-statutory-audit-why-choose-us__eyebrow,
.ys-statutory-audit-why-choose-us__title,
.ys-statutory-audit-why-choose-us__intro {
  color: #fff;
  margin: 0;
  text-align: center;
}

.ys-statutory-audit-why-choose-us__eyebrow {
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 20px;
  text-transform: uppercase;
}

.ys-statutory-audit-why-choose-us__title {
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
}

.ys-statutory-audit-why-choose-us__intro {
  font-family: Inter, Manrope, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  max-width: 750px;
  padding-top: 3px;
}

.ys-statutory-audit-why-choose-us__grid {
  align-items: stretch;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0 !important;
  width: 100%;
}

.ys-statutory-audit-why-choose-us__grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ys-statutory-audit-why-choose-us__grid::-webkit-scrollbar {
  display: none;
}

.ys-statutory-audit-why-choose-us__viewport {
  overflow: visible;
  width: 100%;
}

.ys-statutory-audit-why-choose-us__grid-item {
  display: flex;
  flex: 0 0 285px;
  margin: 0 !important;
  min-width: 0;
  width: 285px;
}

.ys-statutory-audit-why-choose-us__card {
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 0 16px 0 16px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 30px;
  min-height: 245px;
  overflow: hidden;
  padding: 29px 29px 38px;
  width: 100%;
}

.ys-statutory-audit-why-choose-us__card:hover {
  border-color: #a0e8d8;
  box-shadow: 0 16px 48px 0 rgba(79, 212, 184, 0.2);
  background:
    linear-gradient(
      0deg,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 0%,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 100%
    ),
    #fff;
}

.ys-statutory-audit-why-choose-us__icon-wrap {
  align-items: center;
  background: rgba(28, 154, 145, 0.2);
  border-radius: 10px;
  color: #1c9a91;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    color 180ms ease;
  width: 44px;
}

.ys-statutory-audit-why-choose-us__card:hover .ys-statutory-audit-why-choose-us__icon-wrap {
  background: #1c9a91;
  color: #fff;
}

.ys-statutory-audit-why-choose-us__icon {
  display: block;
  height: 24px;
  width: 24px;
}

.ys-statutory-audit-why-choose-us__card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.ys-statutory-audit-why-choose-us__card-title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  min-height: 48px;
}

.ys-statutory-audit-why-choose-us__card:hover .ys-statutory-audit-why-choose-us__card-title {
  color: #1c9a91;
}

.ys-statutory-audit-why-choose-us__copy {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

.ys-statutory-audit-why-choose-us__controls {
  display: none;
}

.ys-statutory-audit-mfrs {
  background: #fff;
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-statutory-audit-mfrs__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-statutory-audit-mfrs__inner > *,
.ys-statutory-audit-mfrs__body > *,
.ys-statutory-audit-mfrs__grid > *,
.ys-statutory-audit-mfrs__card > * {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-statutory-audit-mfrs__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ys-statutory-audit-mfrs__title,
.ys-statutory-audit-mfrs__intro,
.ys-statutory-audit-mfrs__label {
  margin: 0;
  text-align: center;
}

.ys-statutory-audit-mfrs__title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
}

.wp-block-heading.ys-statutory-audit-mfrs__title {
  max-width: max-content;
}

.ys-statutory-audit-mfrs__intro {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  /* max-width: 870px; */
  padding-top: 3px;
}

.ys-statutory-audit-mfrs__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ys-statutory-audit-mfrs__label {
  color: #1a6b6b;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  width: 100%;
}

.ys-statutory-audit-mfrs__grid {
  align-items: stretch;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 0 !important;
  width: 100%;
}

.ys-statutory-audit-mfrs__grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ys-statutory-audit-mfrs__grid::-webkit-scrollbar {
  display: none;
}

.ys-statutory-audit-mfrs__viewport {
  overflow: visible;
  width: 100%;
}

.ys-statutory-audit-mfrs__grid-item {
  display: flex;
  flex: 0 0 224px;
  margin: 0 !important;
  min-width: 0;
  width: 224px;
}

.ys-statutory-audit-mfrs__card {
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 0 16px 0 16px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 22px;
  min-height: 162px;
  overflow: hidden;
  padding: 22px 20px 24px;
  width: 100%;
}

.ys-statutory-audit-mfrs__card:hover {
  border-color: #a0e8d8;
  background:
    linear-gradient(
      0deg,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 0%,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 100%
    ),
    #fff;
  box-shadow: 0 16px 48px 0 rgba(79, 212, 184, 0.2);
}

.ys-statutory-audit-mfrs__icon-wrap {
  align-items: center;
  background: rgba(28, 154, 145, 0.2);
  border-radius: 10px;
  color: #1c9a91;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    color 180ms ease;
  width: 32px;
}

.ys-statutory-audit-mfrs__card:hover .ys-statutory-audit-mfrs__icon-wrap {
  background: #1c9a91;
  color: #fff;
}

.ys-statutory-audit-mfrs__icon {
  display: block;
  height: 16px;
  width: 16px;
}

.ys-statutory-audit-mfrs__copy {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

.ys-statutory-audit-mfrs__controls {
  display: none;
}

.ys-statutory-audit-how-it-works {
  background: #fff;
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-statutory-audit-how-it-works__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 68px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-statutory-audit-how-it-works__inner > *,
.ys-statutory-audit-how-it-works__steps > *,
.ys-statutory-audit-how-it-works__step > *,
.ys-statutory-audit-how-it-works__step-body > * {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-statutory-audit-how-it-works__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ys-statutory-audit-how-it-works__eyebrow {
  color: #1f8585;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 20px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.ys-statutory-audit-how-it-works__title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-align: center;
}

.ys-statutory-audit-how-it-works__steps {
  align-items: flex-start;
  display: flex;
  gap: 84px;
  justify-content: center;
  margin: 0 !important;
  max-width: 855px;
  width: 100%;
}

.ys-statutory-audit-how-it-works__step {
  align-items: center;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 35px;
  max-width: 229px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.ys-statutory-audit-how-it-works__step:not(:last-child)::after {
  background: linear-gradient(90deg, #43dfd4 0%, #1c9a91 50%, #076f67 100%);
  content: '';
  height: 3px;
  left: calc(50% + 49px);
  position: absolute;
  top: 31px;
  width: calc(100% - 98px + 84px);
}

.ys-statutory-audit-how-it-works__badge {
  align-items: center;
  background: linear-gradient(110.31deg, #43dfd4 0%, #1c9a91 50%, #076f67 100%);
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 30px;
  font-weight: 600;
  height: 65px;
  justify-content: center;
  line-height: 1;
  min-width: 65px;
  padding: 11px;
  text-align: center;
}

.ys-statutory-audit-how-it-works__step-body {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ys-statutory-audit-how-it-works__step-title,
.ys-statutory-audit-how-it-works__step-copy {
  margin: 0;
  text-align: center;
}

.ys-statutory-audit-how-it-works__step-title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  width: 100%;
}

.ys-statutory-audit-how-it-works__step-copy {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  width: 100%;
}

.ys-statutory-audit-how-it-works__actions {
  margin: 0 !important;
  width: 100%;
}

@media (max-width: 1024px) {
  .ys-statutory-audit-how-it-works__actions {
    width: auto;
    align-self: start;
  }
}

.ys-statutory-audit-how-it-works__button {
  align-items: center;
  background: #1c9a91;
  color: #fff;
  display: inline-flex;
  font-family: Inter, Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.5px;
  line-height: 22px;
  min-height: 50px;
  padding: 14px 18px;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.ys-statutory-audit-how-it-works__button:hover,
.ys-statutory-audit-how-it-works__button:focus-visible {
  background: #4fd4b8;
  box-shadow: 0 8px 24px 0 rgba(43, 181, 160, 0.3);
}

.ys-statutory-audit-how-it-works__button-icon {
  color: inherit;
  display: block;
  height: 12px;
  width: 12px;
}

.ys-faq-section {
  background: rgba(16, 185, 129, 0.25);
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-faq-section__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-faq-section__inner > *,
.ys-faq-section__head > *,
.ys-faq-section__list > *,
.ys-accordion > * {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-faq-section__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ys-faq-section__eyebrow {
  color: #1f8585;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 20px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.ys-faq-section__title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-align: center;
}

.ys-faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 !important;
  max-width: 840px;
  width: 100%;
}

.ys-accordion {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0 16px 0 16px;
  box-shadow: none;
  margin: 0 !important;
  overflow: hidden;
  width: 100%;
}

.ys-accordion__trigger {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: #0a2e2e;
  cursor: pointer;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 24px 23px;
  text-align: left;
  width: 100%;
}

.ys-accordion__title {
  color: #0a2e2e;
  display: block;
  flex: 1 1 auto;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  min-width: 0;
  transition: color 160ms ease;
  white-space: normal;
}

.ys-accordion__icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.ys-accordion__icon img {
  display: block;
  height: 6px;
  transition: transform 320ms ease;
  width: 10px;
}

.ys-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.ys-accordion__copy {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
  padding: 0 23px 24px;
}

/* .ys-accordion.is-expanded {
  border-color: #1f8585;
} */

.ys-accordion.is-expanded .ys-accordion__title,
.ys-accordion__trigger:hover .ys-accordion__title,
.ys-accordion__trigger:focus-visible .ys-accordion__title {
  color: #2bb5a0;
}

.ys-accordion.is-expanded .ys-accordion__icon img {
  transform: rotate(180deg);
}

.ys-accordion__trigger:focus-visible {
  outline: 2px solid #1f8585;
  outline-offset: -2px;
}

@media (max-width: 1420px) {
  .ys-home-usp__cards {
    -ms-overflow-style: none;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .ys-home-usp__cards::-webkit-scrollbar {
    display: none;
  }

  .ys-home-usp__card {
    flex: 0 0 285px;
    width: 285px;
  }

  .ys-home-services__viewport {
    -ms-overflow-style: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .ys-home-services__viewport::-webkit-scrollbar {
    display: none;
  }

  .ys-home-services__track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0;
    width: max-content;
  }

  .ys-statutory-audit-support__grid {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
  }

  .ys-statutory-audit-support__grid-item {
    flex: 0 0 285px;
  }

  .ys-statutory-audit-why-choose-us__grid {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
  }

  .ys-statutory-audit-why-choose-us__grid-item {
    flex: 0 0 285px;
  }

  .ys-non-statutory-audit-services__grid {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
  }

  .ys-non-statutory-audit-services__item {
    flex: 0 0 320px;
  }

  .ys-who-we-are-core-value__grid {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
  }

  .ys-who-we-are-core-value__grid > .wp-block-group {
    flex: 0 0 320px;
    width: 320px;
  }

  .ys-statutory-audit-mfrs__grid {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
  }

  .ys-statutory-audit-mfrs__grid-item {
    flex: 0 0 224px;
  }
}

.ys-who-we-are-stat {
  background: #fff;
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-who-we-are-stat__inner {
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-who-we-are-stat__inner > *,
.ys-who-we-are-stat__columns > *,
.ys-who-we-are-stat__column > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-who-we-are-stat__columns {
  align-items: flex-start;
  display: flex;
  gap: 59px;
  margin: 0 !important;
}

.ys-who-we-are-stat__column {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  margin: 0 !important;
  min-width: 0;
}

.ys-who-we-are-stat__lead,
.ys-who-we-are-stat__copy {
  color: #0f172a;
  font-family: Inter, Manrope, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
  text-align: left;
}

.ys-who-we-are-stat__lead {
  font-size: 28px;
  line-height: 36px;
}

.ys-who-we-are-stat__copy {
  font-size: 17px;
  line-height: 30px;
}

.ys-who-we-are-stat__spacer {
  flex: 0 0 auto;
  margin: 0 !important;
}

.ys-who-we-are-founder {
  background: #fff;
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-who-we-are-founder__inner {
  align-items: stretch;
  display: flex;
  gap: 80px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-who-we-are-founder__inner > *,
.ys-who-we-are-founder__media > *,
.ys-who-we-are-founder__content > *,
.ys-who-we-are-founder__copy-group > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-who-we-are-founder__media {
  flex: 0 0 489px;
  width: 489px;
}

.ys-who-we-are-founder__portrait {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(160, 232, 216, 0.8) 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 0 16px 0 16px;
  height: 631px;
  margin: 0 !important;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ys-who-we-are-founder__portrait img {
  display: block;
  height: auto;
  max-width: none;
  position: absolute;
  left: -19.48%;
  top: -21.12%;
  width: 139.11%;
}

.ys-who-we-are-founder__content {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.ys-who-we-are-founder__eyebrow {
  color: #1f8585;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 20px;
  margin: 0 0 12px;
  text-align: left;
  text-transform: uppercase;
}

.ys-who-we-are-founder__name {
  align-items: flex-end;
  color: #0f172a;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-align: left;
}

.ys-who-we-are-founder__nickname {
  color: #0f172a;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.ys-who-we-are-founder__credentials {
  color: #94a3b8;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin: 12px 0 45px;
  text-align: left;
}

.ys-who-we-are-founder__copy-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.ys-who-we-are-founder__copy {
  color: #0f172a;
  font-family: Inter, Manrope, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 30px;
  margin: 0;
  text-align: left;
}

.ys-who-we-are-leadership {
  background: #fff;
  margin: 0;
  padding: 0 min(8.333vw, 120px) 96px;
  width: 100%;
}

.ys-who-we-are-leadership__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-who-we-are-leadership__inner > *,
.ys-who-we-are-leadership__grid > *,
.ys-who-we-are-leadership__card > *,
.ys-who-we-are-leadership__text > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-who-we-are-leadership__title {
  color: #0f172a;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-align: left;
}

.ys-who-we-are-leadership__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: flex-start;
  margin: 0 !important;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  width: 100%;
}

.ys-who-we-are-leadership__grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ys-who-we-are-leadership__grid::-webkit-scrollbar {
  display: none;
}

.ys-who-we-are-leadership__card {
  display: flex;
  flex: 0 0 270px;
  flex-direction: column;
  gap: 12px;
  margin: 0 !important;
  min-width: 0;
  width: 270px;
}

.ys-who-we-are-leadership__image {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(160, 232, 216, 0.8) 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 0 16px 0 16px;
  isolation: isolate;
  height: 270px;
  overflow: hidden;
  position: relative;
  width: 270px;
  backdrop-filter: blur(4px);
}

.ys-who-we-are-leadership__image::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 0%,
    var(--Deep-Teal, rgba(28, 154, 145, 0.8)) 100%
  );
  content: '';
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 180ms ease;
  z-index: 0;
}

.ys-who-we-are-leadership__image:hover::before {
  opacity: 1;
}

.ys-who-we-are-leadership__image img {
  display: block;
  height: auto;
  max-width: none;
  position: absolute;
  z-index: 1;
}

.ys-who-we-are-leadership__image--jessie img {
  left: -22.08%;
  top: -25.24%;
  width: 131.85%;
}

.ys-who-we-are-leadership__image--rachel img {
  left: -17.41%;
  top: -24.61%;
  width: 134.82%;
}

.ys-who-we-are-leadership__image--jia-yee img {
  left: 0.02%;
  top: -15.96%;
  width: 122.48%;
}

.ys-who-we-are-leadership__image--belle img {
  left: -12.17%;
  top: -21.77%;
  width: 124.63%;
}

.ys-who-we-are-leadership__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 4px;
  width: 100%;
}

.ys-who-we-are-leadership__name {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  text-align: center;
}

.ys-who-we-are-leadership__role {
  color: #1a6b6b;
  font-family: Inter, Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 22px;
  margin: 0;
  text-align: center;
}

.ys-who-we-are-leadership__credentials {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
  text-align: center;
}

.ys-who-we-are-associates {
  background: linear-gradient(138.989deg, #0a2e2e 0%, #0f3d3d 50%, #145050 100%);
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-who-we-are-associates__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-who-we-are-associates__inner > *,
.ys-who-we-are-associates__heading > *,
.ys-who-we-are-associates__grid > *,
.ys-who-we-are-associates__card > *,
.ys-who-we-are-associates__text > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-who-we-are-associates__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ys-who-we-are-associates__title {
  color: #fff;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-align: center;
}

.ys-who-we-are-associates__subhead {
  color: #fff;
  font-family: Inter, Manrope, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  margin: 0 auto !important;
  max-width: 750px !important;
  text-align: center;
  width: 100%;
}

.ys-who-we-are-associates__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: space-evenly;
  margin: 0 !important;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  max-width: 100%;
}

.ys-who-we-are-associates__grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ys-who-we-are-associates__grid::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1024px) {
  .ys-who-we-are-associates__grid {
    justify-content: space-around;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
  }

  .ys-who-we-are-associates__card {
    flex: 0 0 320px;
    width: 320px;
  }
}

.ys-who-we-are-associates__card {
  align-items: center;
  background: #fff;
  border: 1px solid #10b981;
  border-radius: 8px;
  display: flex;
  flex: 0 0 320px;
  flex-direction: column;
  gap: 10px;
  margin: 0 !important;
  min-height: 168px;
  min-width: 0;
  padding: 20px;
  width: 320px;
}

.ys-who-we-are-associates__logo {
  height: 142px;
  position: relative;
  width: 100%;
}

.ys-who-we-are-associates__logo img {
  display: block;
  height: 100%;
  left: 50%;
  max-width: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
}

.ys-who-we-are-associates__logo--mavens img {
  object-fit: cover;
}

.ys-who-we-are-associates__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.ys-who-we-are-associates__name {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  height: 48px;
  margin: 0;
  text-align: center;
}

.ys-who-we-are-associates__description {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
  text-align: center;
}

.ys-who-we-are-credentials {
  background: rgba(16, 185, 129, 0.1);
  margin: 0;
  padding: 40px min(8.333vw, 120px);
  width: 100%;
}

.ys-who-we-are-credentials__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-who-we-are-credentials__inner > *,
.ys-who-we-are-credentials__logos > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-who-we-are-credentials__title {
  color: #0f172a;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin: 0;
  text-align: center;
}

.ys-who-we-are-credentials__logos {
  align-items: center;
  display: flex !important;
  flex-wrap: nowrap;
  gap: 100px;
  justify-content: center;
  margin: 0 !important;
  width: 100%;
}

.ys-who-we-are-credentials__logo-item {
  align-items: center;
  display: flex;
  margin-top: 0;
  flex: 0 0 auto;
  justify-content: center;
}

.ys-who-we-are-credentials__logo-item--mia {
  width: 138px;
}

.ys-who-we-are-credentials__logo-item--acca {
  width: 159px;
}

.ys-who-we-are-credentials__logo-item--acca:nth-child(3) {
  width: 189px;
}

.ys-who-we-are-credentials__logo {
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.ys-who-we-are-vision-mission {
  background: #fff;
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-who-we-are-vision-mission__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-who-we-are-vision-mission__inner > *,
.ys-who-we-are-vision-mission__section > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-who-we-are-vision-mission__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.ys-who-we-are-vision-mission__heading {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.ys-who-we-are-vision-mission__icon-wrap {
  align-items: center;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.ys-who-we-are-vision-mission__icon {
  display: block;
  height: 28px;
  width: 28px;
}

.ys-who-we-are-vision-mission__icon--vision,
.ys-who-we-are-vision-mission__icon--mission {
  height: 30px;
  width: 30px;
}

.ys-who-we-are-vision-mission__title {
  color: #0f172a;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-align: center;
}

.ys-who-we-are-vision-mission__statement,
.ys-who-we-are-mission__text {
  color: #5c6e6e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.ys-who-we-are-vision-mission__statement {
  margin: 0;
  padding-left: 66px;
  text-align: center;
}

.ys-who-we-are-mission__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0 0 0 66px;
}

.ys-who-we-are-mission__item {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.ys-who-we-are-mission__check-wrap {
  align-items: center;
  background: rgba(28, 154, 145, 0.2);
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 32px;
  height: 32px;
  justify-content: center;
  margin-top: -4px;
  width: 32px;
}

.ys-who-we-are-mission__check {
  display: block;
  height: 16px;
  width: 16px;
}

.ys-who-we-are-mission__text {
  display: block;
  flex: 0 1 auto;
  margin: 0;
}

.ys-who-we-are-core-value {
  background: linear-gradient(137.085deg, #0a2e2e 0%, #0f3d3d 50%, #145050 100%);
  margin: 0;
  padding: 96px min(8.333vw, 120px);
  width: 100%;
}

.ys-who-we-are-core-value__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto !important;
  max-width: 1200px;
  width: 100%;
}

.ys-who-we-are-core-value__inner > *,
.ys-who-we-are-core-value__grid > *,
.ys-who-we-are-core-value__card > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.ys-who-we-are-core-value__title {
  color: #fff;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-align: center;
}

.ys-who-we-are-core-value__grid {
  align-items: stretch;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  margin: 0 !important;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  width: 100%;
}

.ys-who-we-are-core-value__grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ys-who-we-are-core-value__grid::-webkit-scrollbar {
  display: none;
}

.ys-who-we-are-core-value__grid > .wp-block-group {
  display: flex;
  flex: 0 0 320px;
  margin: 0 !important;
  min-width: 0;
  width: 320px;
}

.ys-who-we-are-core-value__card {
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 0 16px 0 16px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 30px;
  height: 320px;
  min-height: 320px;
  min-width: 0;
  overflow: hidden;
  padding: 29px 25px 38px 29px;
  width: 100%;
}

.ys-who-we-are-core-value__card:hover {
  border-color: #a0e8d8;
  background:
    linear-gradient(
      0deg,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 0%,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 100%
    ),
    #fff;
  box-shadow: 0 16px 48px 0 rgba(79, 212, 184, 0.2);
}

.ys-who-we-are-core-value__icon-wrap {
  align-items: center;
  background: rgba(28, 154, 145, 0.2);
  border-radius: 10px;
  color: #1c9a91;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    color 180ms ease;
  width: 44px;
}

.ys-who-we-are-core-value__card:hover .ys-who-we-are-core-value__icon-wrap {
  background: #1c9a91;
  color: #fff;
}

.ys-who-we-are-core-value__icon {
  display: block;
  height: 24px;
  width: 24px;
}

.ys-who-we-are-core-value__card-title {
  color: #0a2e2e;
  font-family: Barlow, 'Fira Sans', Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.ys-who-we-are-core-value__card:hover .ys-who-we-are-core-value__card-title {
  color: #1c9a91;
}

.ys-who-we-are-core-value__copy {
  color: #5c6e6e;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

@media (max-width: 1420px) {
  .ys-who-we-are-core-value__grid {
    justify-content: flex-start;
  }
}

.ys-global-footer {
  background: #162323;
  color: rgba(255, 255, 255, 0.7);
  font-family: Inter, Manrope, sans-serif;
  padding: 64px 24px 32px;
  width: 100%;
  margin-block-start: 0;
}

.ys-global-footer a {
  text-decoration: none;
}

.ys-global-footer__inner {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.ys-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 259px;
}

.ys-footer-brand__logo {
  display: block;
  width: 230px;
}

.ys-footer-brand__logo img {
  display: block;
  height: auto;
  width: 230px;
}

.ys-footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
  max-width: 259px;
}

.ys-footer-badges {
  align-items: center;
  display: flex;
  gap: 13px;
}

.ys-footer-badges img {
  display: block;
  height: 62px;
  object-fit: contain;
  width: auto;
}

.ys-footer-badges img:not(.ys-footer-badges__mia) {
  height: 69px;
}

.ys-footer-badges__mia {
  width: 62px;
}

.ys-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 330px;
}

.ys-footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 22px;
  padding: 4px 0;
  text-transform: uppercase;
  width: fit-content;
}

.ys-footer-nav a:hover,
.ys-footer-nav a:focus-visible {
  color: #e2e8e8;
  padding-bottom: 3px;
  border-bottom: 1px solid #1f8585;
  /* text-decoration-color: #1f8585; */
}

.ys-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 330px;
}

.ys-footer-contact__item {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.ys-footer-contact__item > div {
  display: flex;
  flex-direction: column;
}

.ys-footer-contact__item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.ys-footer-contact__item a {
  color: #4fd4b8;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.ys-footer-icon {
  display: block;
  flex: 0 0 16px;
  height: 16px;
  margin-top: 2px;
  width: 16px;
}

.ys-footer-socials {
  display: flex;
  gap: 10px;
}

.ys-footer-socials a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  display: flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.ys-footer-socials a:hover,
.ys-footer-socials a:focus-visible {
  border: var(--stroke-weight-1, 1px) solid var(--color-cyan-32, #1f8585);
  background: var(--color-cyan-32, #1f8585);
  color: white;
}

.ys-footer-social__icon {
  display: block;
  height: 16px;
  width: 16px;
}

.ys-footer-social__icon--whatsapp {
  height: 18px;
  width: 18px;
}

.ys-global-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 36px -24px 0;
  padding: 21px 24px 20px;
  text-align: center;
}

.ys-global-footer__bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  font-weight: 400;
  line-height: 20.8px;
  margin: 0;
}

.ys-site-footer {
  padding: 40px 24px;
  text-align: center;
}

/* ── Sectors We Serve ───────────────────────────────────────────────── */

.ys-home-sectors {
  background: #1c9a91;
  padding: 72px 24px;
  width: 100%;
}

.ys-home-sectors__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.ys-home-sectors__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ys-home-sectors__label {
  color: #fff;
  font-family: Inter, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 20px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.ys-home-sectors__title {
  color: #f1f5f9;
  font-family: Barlow, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
}

.ys-home-sectors__subhead {
  color: #f1f5f9;
  font-family: Inter, Manrope, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  max-width: 750px;
  text-align: center;
}

.ys-home-sectors__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.ys-home-sectors__card {
  align-items: center;
  backdrop-filter: blur(4px);
  background: #fff;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 0 16px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  min-height: 188px;
  padding: 21px;
  width: 280px;
}

.ys-home-sectors__card:hover {
  border: var(--stroke-weight-1, 1px) solid var(--color-spring-green-3925, rgba(16, 185, 129, 0.25));
  background: var(--YS-Gradient-White, linear-gradient(180deg, #fff 50.48%, #adebdd 100%));
  box-shadow: 0 16px 48px 0 rgba(79, 212, 184, 0.2);
}

.ys-home-sectors__icon {
  display: block;
  height: 88px;
  object-fit: contain;
  width: 88px;
}

.ys-home-sectors__name {
  color: #0f3d3d;
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  text-align: center;
}

/* === Home: Why Choose Us === */
.ys-home-usp {
  background: #fff;
  padding: 96px 24px;
  width: 100%;
}

.ys-home-usp__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0 auto;
  max-width: 1200px;
}

.ys-home-usp__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ys-home-usp__label {
  color: #1f8585;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 20px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.ys-home-usp__title {
  color: #0a2e2e;
  font-family: Barlow, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-align: center;
}

.ys-home-usp__subhead {
  color: #5c6e6e;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  max-width: 750px;
  text-align: center;
}

.ys-home-usp__cards {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.ys-home-usp__card {
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 0 16px 0 16px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
  overflow: hidden;
  padding: 29px;
}

.ys-home-usp__card:hover {
  border: var(--stroke-weight-1, 1px) solid var(--color-cyan-77, #a0e8d8);
  background:
    linear-gradient(
      0deg,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 0%,
      var(--color-cyan-5715, rgba(79, 212, 184, 0.15)) 100%
    ),
    #fff;
  /* Shadow Green */
  box-shadow: 0 16px 48px 0 rgba(79, 212, 184, 0.2);
}

.ys-home-usp__card:hover .ys-home-usp__card-title {
  color: #1c9a91;
}

.ys-home-usp__badge {
  align-items: center;
  background: rgba(28, 154, 145, 0.2);
  border-radius: 10px;
  color: #1c9a91;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.ys-home-usp__card:hover .ys-home-usp__badge {
  background: #1c9a91;
  color: #fff;
}

.ys-home-usp__icon {
  height: 22px;
  width: 22px;
}

.ys-home-usp__icon svg {
  display: block;
  height: 100%;
  width: 100%;
}

.ys-home-usp__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ys-home-usp__title-slot {
  display: flex;
  flex-direction: column;
  height: 48px;
  justify-content: flex-end;
}

.ys-home-usp__card-title {
  color: #0a2e2e;
  font-family: Barlow, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  white-space: wrap;
}

.ys-home-usp__card-body {
  color: #5c6e6e;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

/* === Home: CTA === */

.ys-home-cta {
  background-color: #1c9a91;
  overflow: hidden;
  padding: 72px 24px;
  position: relative;
  width: 100%;
}

#home-our-services,
#home-cta,
#statutory-audit-cta,
#non-statutory-audit-cta,
#review-engagements-cta,
#compilation-of-financial-statements-cta {
  scroll-margin-top: 72px;
}

@media (max-width: 1024px) {
  #home-our-services,
  #home-cta,
  #statutory-audit-cta,
  #non-statutory-audit-cta,
  #review-engagements-cta,
  #compilation-of-financial-statements-cta {
    scroll-margin-top: 100px;
  }
}

.ys-home-cta__bg-image {
  background-position: center;
  background-size: cover;
  bottom: 0;
  left: 0;
  mix-blend-mode: hard-light;
  opacity: 0.1;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.ys-home-cta__overlay {
  background: linear-gradient(
    104.47deg,
    rgba(59, 101, 93, 0.4) 8.29%,
    rgba(255, 255, 255, 0) 93.45%
  );
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.ys-home-cta__inner {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}

.ys-home-cta__left {
  display: flex;
  flex-direction: column;
  align-self: start;
  flex: 1;
  gap: 20px;
  min-width: 0;
}

.ys-home-cta__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ys-home-cta__eyebrow {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 20px;
  margin: 0;
  text-transform: uppercase;
}

.ys-home-cta__title {
  color: #fff;
  font-family: Barlow, sans-serif;
  /* white-space: nowrap; */
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-transform: capitalize;
}

.ys-home-cta__desc {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  margin: 0;
}

.ys-home-cta__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1024px) {
  .ys-home-cta__links {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    align-self: start;
    gap: 12px;
  }
}

.ys-home-cta__btn {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
  height: 52px;
  justify-content: center;
  letter-spacing: 0.5px;
  line-height: 22px;
  padding: 0 24px;
  text-decoration: none;
  white-space: nowrap;
}

.ys-home-cta__btn--wa {
  background: #25d366;
  color: #fff;
}

.ys-home-cta__btn--wa:hover {
  background: #059669;
  box-shadow: 0 8px 24px 0 rgba(43, 181, 160, 0.3);
}

.ys-home-cta__btn--email {
  background: #fff;
  color: #0f3d3d;
}

.ys-home-cta__btn--email:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px 0 rgba(43, 181, 160, 0.3);
}

.ys-home-cta__btn-icon {
  flex-shrink: 0;
  height: 18px;
  width: 18px;
}

.ys-home-cta__btn--email .ys-home-cta__btn-icon {
  height: 16px;
  width: 16px;
}

.ys-home-cta__btn-icon img {
  display: block;
  height: 100%;
  width: 100%;
}

.ys-home-cta__card {
  background: #fff;
  border-radius: 0 24px 0 24px;
  box-shadow: 0 16px 24px rgba(10, 46, 46, 0.15);
  flex-shrink: 0;
  padding: 39px 40px 40px;
  width: 600px;
}

.ys-home-cta__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ys-home-cta__row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.ys-home-cta__field {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
  min-width: 0;
}

.ys-home-cta__field--full {
  flex-basis: 100%;
}

.ys-home-cta__label {
  color: #3d5050;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
}

.ys-home-cta__required {
  color: #e53e3e;
}

.ys-home-cta__input,
.ys-home-cta__textarea {
  border: 1px solid #e2e8e8;
  color: #0a2e2e;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  outline: none;
  padding: 13px 17px;
  width: 100%;
}

.ys-home-cta__input:focus,
.ys-home-cta__textarea:focus {
  border-color: #1c9a91;
}

.ys-home-cta__input::placeholder,
.ys-home-cta__textarea::placeholder {
  color: #a0aec0;
}

.ys-home-cta__textarea {
  min-height: 100px;
  resize: vertical;
}

.ys-home-cta__submit {
  align-items: center;
  background: #1c9a91;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.5px;
  line-height: 22px;
  margin-top: 10px;
  padding: 14px;
  width: 100%;
}

.ys-cta__submit:hover {
  background: #4fd4b8;
  box-shadow: 0 8px 24px 0 rgba(43, 181, 160, 0.3);
}

.ys-home-cta__submit-icon {
  display: flex;
  align-items: center;
}

.ys-home-cta__submit-icon img {
  display: block;
  height: 18px;
  width: 18px;
}

.ys-home-cta__note {
  color: #64748b;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 19px;
  margin: 0;
  text-align: center;
}

.ys-home-cta__notice {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
  padding: 12px 16px;
}

.ys-home-cta__notice--error {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
}

.ys-home-cta__notice--success {
  background: #edfdf8;
  border: 1px solid #a0e8d8;
  color: #0f3d3d;
}

.ys-home-cta--statutory-audit .ys-home-cta__inner {
  gap: 48px;
}

.ys-home-cta--statutory-audit .ys-home-cta__left {
  max-width: 478px;
}

.ys-home-cta--statutory-audit .ys-home-cta__title {
  max-width: 470px;
}

.ys-home-cta--statutory-audit .ys-home-cta__desc {
  max-width: 420px;
}

.ys-home-cta--non-statutory-audit .ys-home-cta__inner {
  gap: 48px;
}

.ys-home-cta--non-statutory-audit .ys-home-cta__left {
  max-width: 478px;
}

.ys-home-cta--non-statutory-audit .ys-home-cta__title {
  max-width: 478px;
}

.ys-home-cta--non-statutory-audit .ys-home-cta__desc {
  max-width: 447px;
}

.ys-home-cta--compilation-of-financial-statements .ys-home-cta__inner {
  gap: 48px;
}

.ys-home-cta--compilation-of-financial-statements .ys-home-cta__left {
  max-width: 478px;
}

.ys-home-cta--compilation-of-financial-statements .ys-home-cta__title {
  max-width: 478px;
}

.ys-home-cta--compilation-of-financial-statements .ys-home-cta__desc {
  max-width: 420px;
}

/* === Contact Us === */

.ys-contact-us {
  background: #fff;
  padding: 72px 24px;
  width: 100%;
}

.ys-contact-us__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.ys-contact-us__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ys-contact-us__title {
  color: #0f172a;
  font-family: Barlow, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-transform: capitalize;
}

.ys-contact-us__intro {
  color: #0f172a;
  font-family: Barlow, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin: 0;
  max-width: 100%;
}

.ys-contact-us__content {
  align-items: center;
  display: flex;
  gap: 110px;
  width: 100%;
}

.ys-contact-us__card {
  width: 600px;
}

.ys-contact-us__info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 32px;
  max-width: 399px;
}

.ys-contact-us__info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ys-contact-us__info-title {
  color: #0f172a;
  font-family: Barlow, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.ys-contact-us__link,
.ys-contact-us__direction-link {
  align-items: center;
  color: #1a6b6b;
  display: inline-flex;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  gap: 6px;
  letter-spacing: 0.5px;
  line-height: 22px;
  text-decoration: none;
  transition:
    img 180ms ease,
    color 180ms ease;
}

.ys-contact-us__link img,
.ys-contact-us__direction-link > img {
  display: block;
  height: 12px;
  width: 12px;
}

.ys-contact-us__address {
  color: #0f172a;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

.ys-contact-us__direction-links {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.ys-contact-us__direction-link {
  gap: 10px;
}

.ys-contact-us__direction-icon {
  display: block;
  flex: 0 0 auto;
  position: relative;
}

.ys-contact-us__direction-icon--google {
  height: 22px;
  width: 16px;
}

.ys-contact-us__direction-icon--google img,
.ys-contact-us__direction-icon--waze img {
  display: block;
  inset: 0;
  position: absolute;
  width: 100%;
}

.ys-contact-us__direction-icon--waze {
  height: 22px;
  width: 22px;
}

.ys-contact-us__direction-icon--waze img {
  inset: 0;
  width: 100%;
}

.ys-contact-us__socials {
  display: flex;
  gap: 10px;
}

.ys-contact-us__social-link {
  align-items: center;
  border: 1px solid #a0e8d8;
  border-radius: 50%;
  color: #1c9a91;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  width: 36px;
}

.ys-contact-us__social-link img {
  display: block;
}

.ys-contact-us__social-icon {
  display: block;
  height: 16px;
  width: 16px;
}

.ys-contact-us__social-icon svg {
  display: block;
  height: 100%;
  width: 100%;
}

.ys-contact-us__social-link:hover,
.ys-contact-us__social-link:focus-visible {
  color: white;
  border-color: #1f8585;
  background-color: #1f8585;
}

.ys-contact-us__link:hover,
.ys-contact-us__link:focus-visible {
  color: #1f8585;
}

.ys-contact-us__link:hover img {
  transform: translateX(2px);
}

.ys-contact-us__direction-link:hover,
.ys-contact-us__direction-link:focus-visible {
  color: #1f8585;
}

.ys-contact-us__direction-link:hover .ys-contact-us__arrow {
  transform: translateX(2px);
}

/* === Home: Testimonials === */

.ys-home-testimonials {
  background: linear-gradient(133.48deg, #0a2e2e 0%, #0f3d3d 50%, #145050 100%);
  padding: 72px 24px;
  width: 100%;
}

.ys-home-testimonials__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0 auto;
  max-width: 1200px;
}

.ys-home-testimonials__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.ys-home-testimonials__label {
  color: #4fd4b8;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 20px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.ys-home-testimonials__title {
  color: #fff;
  font-family: Barlow, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin: 0;
  text-align: center;
}

.ys-home-testimonials__viewport {
  overflow: hidden;
}

.ys-home-testimonials__track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  transition: transform 0.35s ease;
}

.ys-home-testimonials__card {
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 0 16px 0 16px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: space-between;
  min-height: 320px;
  overflow: hidden;
  padding: 33px;
  width: 368px;
}

.ys-home-testimonials__card:hover {
  box-shadow: 0 4px 16px 0 rgba(52, 211, 153, 0.1);
}

.ys-home-testimonials__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.ys-home-testimonials__star {
  display: block;
  height: 21px;
  width: 21px;
}

.ys-home-testimonials__body {
  color: #5c6e6e;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
}

.ys-home-testimonials__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}

main + .wp-block-template-part {
  margin-block-start: 0;
}

.ys-home-testimonials__avatar {
  align-items: center;
  background: #e2e8e8;
  border-radius: 20px;
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.ys-home-testimonials__avatar span {
  color: #145050;
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.ys-home-testimonials__name {
  color: #0a2e2e;
  font-family: Barlow, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.ys-home-testimonials__nav {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.ys-home-testimonials__arrow {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 22px;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.ys-home-testimonials__arrow:hover,
.ys-home-testimonials__arrow:focus-visible {
  border-color: #1f8585;
  background: #1f8585;
  color: white;
}

.ys-home-testimonials__arrow svg {
  display: block;
  height: 18px;
  width: 18px;
}

.ys-home-testimonials__dots {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.ys-home-testimonials__dot {
  background: #c5d0d0;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  height: 8px;
  transition:
    background 0.2s,
    width 0.2s;
  width: 8px;
}

.ys-home-testimonials__dot--active {
  background: #4fd4b8;
  width: 24px;
}

/* Animation 3: services cards hinge in */
.ys-home-services--animation-3.is-ready:not(.is-animated) .ys-home-services__head,
.ys-home-services--animation-3.is-ready:not(.is-animated) .ys-home-services__controls,
.ys-who-we-are-leadership--animation-3.is-ready:not(.is-animated) .ys-who-we-are-leadership__title {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
}

.ys-home-services--animation-3.is-ready:not(.is-animated) .ys-home-services__card,
.ys-who-we-are-leadership--animation-3.is-ready:not(.is-animated) .ys-who-we-are-leadership__card {
  opacity: 0;
  transform: perspective(1200px) rotateX(-10deg) translate3d(0, 40px, 0);
  transform-origin: top center;
}

.ys-home-services--animation-3.is-animated .ys-home-services__head,
.ys-who-we-are-leadership--animation-3.is-animated .ys-who-we-are-leadership__title {
  animation: ys-section-rise-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ys-home-services--animation-3.is-animated .ys-home-services__card,
.ys-who-we-are-leadership--animation-3.is-animated .ys-who-we-are-leadership__card {
  animation: ys-home-services-card-enter 820ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.ys-home-services--animation-3.is-animated .ys-home-services__card:nth-child(2),
.ys-who-we-are-leadership--animation-3.is-animated .ys-who-we-are-leadership__card:nth-child(2) {
  animation-delay: 100ms;
}

.ys-home-services--animation-3.is-animated .ys-home-services__card:nth-child(3),
.ys-who-we-are-leadership--animation-3.is-animated .ys-who-we-are-leadership__card:nth-child(3) {
  animation-delay: 200ms;
}

.ys-home-services--animation-3.is-animated .ys-home-services__card:nth-child(4),
.ys-who-we-are-leadership--animation-3.is-animated .ys-who-we-are-leadership__card:nth-child(4) {
  animation-delay: 300ms;
}

.ys-home-services--animation-3.is-animated .ys-home-services__controls {
  animation: ys-section-rise-in 620ms ease-out 260ms both;
}

.ys-non-statutory-audit-services--animation-3.is-ready:not(.is-animated)
  .ys-non-statutory-audit-services__head,
.ys-non-statutory-audit-services--animation-3.is-ready:not(.is-animated)
  .ys-non-statutory-audit-services__controls,
.ys-compilation-of-financial-statements-services--animation-3.is-ready:not(.is-animated)
  .ys-compilation-of-financial-statements-services__head,
.ys-compilation-of-financial-statements-services--animation-3.is-ready:not(.is-animated)
  .ys-compilation-of-financial-statements-services__controls {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
}

.ys-non-statutory-audit-services--animation-3.is-ready:not(.is-animated)
  .ys-non-statutory-audit-services__card,
.ys-compilation-of-financial-statements-services--animation-3.is-ready:not(.is-animated)
  .ys-compilation-of-financial-statements-services__card {
  opacity: 0;
  transform: perspective(1200px) rotateX(-10deg) translate3d(0, 40px, 0);
  transform-origin: top center;
}

.ys-non-statutory-audit-services--animation-3.is-animated .ys-non-statutory-audit-services__head,
.ys-compilation-of-financial-statements-services--animation-3.is-animated
  .ys-compilation-of-financial-statements-services__head {
  animation: ys-section-rise-in 840ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ys-non-statutory-audit-services--animation-3.is-animated .ys-non-statutory-audit-services__card,
.ys-compilation-of-financial-statements-services--animation-3.is-animated
  .ys-compilation-of-financial-statements-services__card {
  animation: ys-home-services-card-enter 960ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.ys-non-statutory-audit-services--animation-3.is-animated
  .ys-non-statutory-audit-services__item:nth-child(2)
  .ys-non-statutory-audit-services__card,
.ys-compilation-of-financial-statements-services--animation-3.is-animated
  .ys-compilation-of-financial-statements-services__item:nth-child(2)
  .ys-compilation-of-financial-statements-services__card {
  animation-delay: 100ms;
}

.ys-non-statutory-audit-services--animation-3.is-animated
  .ys-non-statutory-audit-services__item:nth-child(3)
  .ys-non-statutory-audit-services__card,
.ys-compilation-of-financial-statements-services--animation-3.is-animated
  .ys-compilation-of-financial-statements-services__item:nth-child(3)
  .ys-compilation-of-financial-statements-services__card {
  animation-delay: 200ms;
}

.ys-non-statutory-audit-services--animation-3.is-animated
  .ys-non-statutory-audit-services__item:nth-child(4)
  .ys-non-statutory-audit-services__card,
.ys-compilation-of-financial-statements-services--animation-3.is-animated
  .ys-compilation-of-financial-statements-services__item:nth-child(4)
  .ys-compilation-of-financial-statements-services__card {
  animation-delay: 300ms;
}

.ys-non-statutory-audit-services--animation-3.is-animated
  .ys-non-statutory-audit-services__controls,
.ys-compilation-of-financial-statements-services--animation-3.is-animated
  .ys-compilation-of-financial-statements-services__controls {
  animation: ys-section-rise-in 760ms ease-out 260ms both;
}

/* Animation 4: sectors cards drift from alternating sides */
.ys-home-sectors--animation-4.is-ready:not(.is-animated) .ys-home-sectors__header,
.ys-who-we-are-associates--animation-4.is-ready:not(.is-animated)
  .ys-who-we-are-associates__heading {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.ys-home-sectors--animation-4.is-ready:not(.is-animated) .ys-home-sectors__card:nth-child(odd),
.ys-who-we-are-vision-mission--animation-4.is-ready:not(.is-animated)
  .ys-who-we-are-vision-mission__section:nth-child(odd),
.ys-who-we-are-associates--animation-4.is-ready:not(.is-animated)
  .ys-who-we-are-associates__card:nth-child(odd) {
  opacity: 0;
  transform: translate3d(-36px, 0, 0);
}

.ys-home-sectors--animation-4.is-ready:not(.is-animated) .ys-home-sectors__card:nth-child(even),
.ys-who-we-are-vision-mission--animation-4.is-ready:not(.is-animated)
  .ys-who-we-are-vision-mission__section:nth-child(even),
.ys-who-we-are-associates--animation-4.is-ready:not(.is-animated)
  .ys-who-we-are-associates__card:nth-child(even) {
  opacity: 0;
  transform: translate3d(36px, 0, 0);
}

.ys-home-sectors--animation-4.is-animated .ys-home-sectors__header,
.ys-who-we-are-associates--animation-4.is-animated .ys-who-we-are-associates__heading {
  animation: ys-section-rise-in 680ms ease-out both;
}

.ys-home-sectors--animation-4.is-animated .ys-home-sectors__card,
.ys-who-we-are-vision-mission--animation-4.is-animated .ys-who-we-are-vision-mission__section,
.ys-who-we-are-associates--animation-4.is-animated .ys-who-we-are-associates__card {
  animation: ys-home-sectors-card-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ys-home-sectors--animation-4.is-animated .ys-home-sectors__card:nth-child(2),
.ys-who-we-are-vision-mission--animation-4.is-animated
  .ys-who-we-are-vision-mission__section:nth-child(2),
.ys-who-we-are-associates--animation-4.is-animated .ys-who-we-are-associates__card:nth-child(2) {
  animation-delay: 70ms;
}

.ys-home-sectors--animation-4.is-animated .ys-home-sectors__card:nth-child(3),
.ys-who-we-are-associates--animation-4.is-animated .ys-who-we-are-associates__card:nth-child(3) {
  animation-delay: 140ms;
}

.ys-home-sectors--animation-4.is-animated .ys-home-sectors__card:nth-child(4) {
  animation-delay: 210ms;
}

.ys-home-sectors--animation-4.is-animated .ys-home-sectors__card:nth-child(5) {
  animation-delay: 280ms;
}

.ys-home-sectors--animation-4.is-animated .ys-home-sectors__card:nth-child(6) {
  animation-delay: 350ms;
}

.ys-home-sectors--animation-4.is-animated .ys-home-sectors__card:nth-child(7) {
  animation-delay: 420ms;
}

.ys-review-engagements-comparison--animation-4.is-ready:not(.is-animated)
  .ys-review-engagements-comparison__title {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.ys-review-engagements-comparison--animation-4.is-ready:not(.is-animated)
  .ys-review-engagements-comparison__table-shell {
  opacity: 0;
  transform: translate3d(36px, 0, 0);
}

.ys-review-engagements-comparison--animation-4.is-animated
  .ys-review-engagements-comparison__title {
  animation: ys-section-rise-in 820ms ease-out both;
}

.ys-review-engagements-comparison--animation-4.is-animated
  .ys-review-engagements-comparison__table-shell {
  animation: ys-home-sectors-card-enter 860ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
}

.ys-insight-archive-results--animation-4.is-ready:not(.is-animated)
  .ys-insight-archive-results__grid,
.ys-insight-archive-results--animation-4.is-ready:not(.is-animated)
  .ys-insight-archive-results__empty {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.ys-insight-archive-results--animation-4.is-ready:not(.is-animated)
  .ys-insight-card:nth-child(odd) {
  opacity: 0;
  transform: translate3d(-36px, 0, 0);
}

.ys-insight-archive-results--animation-4.is-ready:not(.is-animated)
  .ys-insight-card:nth-child(even) {
  opacity: 0;
  transform: translate3d(36px, 0, 0);
}

.ys-insight-archive-results--animation-4.is-ready:not(.is-animated)
  .ys-insight-archive-results__pagination {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.ys-insight-archive-results--animation-4.is-animated .ys-insight-archive-results__grid,
.ys-insight-archive-results--animation-4.is-animated .ys-insight-archive-results__empty {
  animation: ys-section-rise-in 820ms ease-out both;
}

.ys-insight-archive-results--animation-4.is-animated .ys-insight-card {
  animation: ys-home-sectors-card-enter 860ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ys-insight-archive-results--animation-4.is-animated .ys-insight-card:nth-child(2) {
  animation-delay: 70ms;
}

.ys-insight-archive-results--animation-4.is-animated .ys-insight-card:nth-child(3) {
  animation-delay: 140ms;
}

.ys-insight-archive-results--animation-4.is-animated .ys-insight-card:nth-child(4) {
  animation-delay: 210ms;
}

.ys-insight-archive-results--animation-4.is-animated .ys-insight-card:nth-child(5) {
  animation-delay: 280ms;
}

.ys-insight-archive-results--animation-4.is-animated .ys-insight-card:nth-child(6) {
  animation-delay: 350ms;
}

.ys-insight-archive-results--animation-4.is-animated .ys-insight-archive-results__pagination {
  animation: ys-section-rise-in 760ms ease-out 220ms both;
}

/* Animation 5: USP cards bloom in */
.ys-home-usp--animation-5.is-ready:not(.is-animated) .ys-home-usp__header,
.ys-who-we-are-core-value--animation-5.is-ready:not(.is-animated) .ys-who-we-are-core-value__title {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.ys-home-usp--animation-5.is-ready:not(.is-animated) .ys-home-usp__card,
.ys-who-we-are-core-value--animation-5.is-ready:not(.is-animated) .ys-who-we-are-core-value__card {
  opacity: 0;
  transform: scale(0.9);
  transform-origin: center top;
}

.ys-home-usp--animation-5.is-ready:not(.is-animated) .ys-home-usp__badge,
.ys-who-we-are-core-value--animation-5.is-ready:not(.is-animated)
  .ys-who-we-are-core-value__icon-wrap {
  transform: scale(0.72);
}

.ys-home-usp--animation-5.is-animated .ys-home-usp__header,
.ys-who-we-are-core-value--animation-5.is-animated .ys-who-we-are-core-value__title {
  animation: ys-section-rise-in 700ms ease-out both;
}

.ys-home-usp--animation-5.is-animated .ys-home-usp__card,
.ys-who-we-are-core-value--animation-5.is-animated .ys-who-we-are-core-value__card {
  animation: ys-home-usp-card-enter 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ys-home-usp--animation-5.is-animated .ys-home-usp__card:nth-child(2),
.ys-who-we-are-core-value--animation-5.is-animated .ys-who-we-are-core-value__card:nth-child(2) {
  animation-delay: 100ms;
}

.ys-home-usp--animation-5.is-animated .ys-home-usp__card:nth-child(3),
.ys-who-we-are-core-value--animation-5.is-animated .ys-who-we-are-core-value__card:nth-child(3) {
  animation-delay: 200ms;
}

.ys-home-usp--animation-5.is-animated .ys-home-usp__card:nth-child(4) {
  animation-delay: 300ms;
}

.ys-home-usp--animation-5.is-animated .ys-home-usp__badge,
.ys-who-we-are-core-value--animation-5.is-animated .ys-who-we-are-core-value__icon-wrap {
  animation: ys-home-usp-badge-enter 620ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.ys-statutory-audit-why-choose-us--animation-5.is-ready:not(.is-animated)
  .ys-statutory-audit-why-choose-us__head {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.ys-statutory-audit-why-choose-us--animation-5.is-ready:not(.is-animated)
  .ys-statutory-audit-why-choose-us__card {
  opacity: 0;
  transform: scale(0.9);
  transform-origin: center top;
}

.ys-statutory-audit-why-choose-us--animation-5.is-ready:not(.is-animated)
  .ys-statutory-audit-why-choose-us__icon-wrap {
  transform: scale(0.72);
}

.ys-statutory-audit-why-choose-us--animation-5.is-animated .ys-statutory-audit-why-choose-us__head {
  animation: ys-section-rise-in 820ms ease-out both;
}

.ys-statutory-audit-why-choose-us--animation-5.is-animated .ys-statutory-audit-why-choose-us__card {
  animation: ys-home-usp-card-enter 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ys-statutory-audit-why-choose-us--animation-5.is-animated
  .ys-statutory-audit-why-choose-us__grid-item:nth-child(2)
  .ys-statutory-audit-why-choose-us__card {
  animation-delay: 100ms;
}

.ys-statutory-audit-why-choose-us--animation-5.is-animated
  .ys-statutory-audit-why-choose-us__grid-item:nth-child(3)
  .ys-statutory-audit-why-choose-us__card {
  animation-delay: 200ms;
}

.ys-statutory-audit-why-choose-us--animation-5.is-animated
  .ys-statutory-audit-why-choose-us__grid-item:nth-child(4)
  .ys-statutory-audit-why-choose-us__card {
  animation-delay: 300ms;
}

.ys-statutory-audit-why-choose-us--animation-5.is-animated
  .ys-statutory-audit-why-choose-us__icon-wrap {
  animation: ys-home-usp-badge-enter 760ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

/* Animation 6: testimonials viewport wipe */
.ys-home-testimonials--animation-6.is-ready:not(.is-animated) .ys-home-testimonials__header,
.ys-home-testimonials--animation-6.is-ready:not(.is-animated) .ys-home-testimonials__nav {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.ys-home-testimonials--animation-6.is-ready:not(.is-animated) .ys-home-testimonials__viewport {
  clip-path: inset(0 100% 0 0);
}

.ys-home-testimonials--animation-6.is-ready:not(.is-animated) .ys-home-testimonials__card {
  opacity: 0;
  transform: translate3d(28px, 0, 0) rotate(-1.5deg);
}

.ys-home-testimonials--animation-6.is-animated .ys-home-testimonials__header {
  animation: ys-section-rise-in 700ms ease-out both;
}

.ys-home-testimonials--animation-6.is-animated .ys-home-testimonials__viewport {
  animation: ys-home-testimonials-viewport-enter 960ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.ys-home-testimonials--animation-6.is-animated .ys-home-testimonials__card {
  animation: ys-home-testimonials-card-enter 760ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.ys-home-testimonials--animation-6.is-animated .ys-home-testimonials__card:nth-child(2) {
  animation-delay: 320ms;
}

.ys-home-testimonials--animation-6.is-animated .ys-home-testimonials__card:nth-child(3) {
  animation-delay: 420ms;
}

.ys-home-testimonials--animation-6.is-animated .ys-home-testimonials__nav {
  animation: ys-section-rise-in 620ms ease-out 360ms both;
}

.ys-statutory-audit-support--animation-6.is-ready:not(.is-animated)
  .ys-statutory-audit-support__head,
.ys-statutory-audit-support--animation-6.is-ready:not(.is-animated)
  .ys-statutory-audit-support__controls,
.ys-statutory-audit-mfrs--animation-6.is-ready:not(.is-animated) .ys-statutory-audit-mfrs__head,
.ys-statutory-audit-mfrs--animation-6.is-ready:not(.is-animated) .ys-statutory-audit-mfrs__controls,
.ys-review-engagements-services--animation-6.is-ready:not(.is-animated)
  .ys-review-engagements-services__head,
.ys-review-engagements-services--animation-6.is-ready:not(.is-animated)
  .ys-review-engagements-services__controls,
.ys-review-engagements-services--animation-6.is-ready:not(.is-animated)
  .ys-review-engagements-services__message {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.ys-statutory-audit-support--animation-6.is-ready:not(.is-animated)
  .ys-statutory-audit-support__viewport,
.ys-statutory-audit-mfrs--animation-6.is-ready:not(.is-animated) .ys-statutory-audit-mfrs__viewport,
.ys-review-engagements-services--animation-6.is-ready:not(.is-animated)
  .ys-review-engagements-services__viewport {
  clip-path: inset(0 100% 0 0);
}

.ys-statutory-audit-support--animation-6.is-ready:not(.is-animated)
  .ys-statutory-audit-support__card,
.ys-statutory-audit-mfrs--animation-6.is-ready:not(.is-animated) .ys-statutory-audit-mfrs__card,
.ys-review-engagements-services--animation-6.is-ready:not(.is-animated)
  .ys-review-engagements-services__card {
  opacity: 0;
  transform: translate3d(28px, 0, 0) rotate(-1.5deg);
}

.ys-statutory-audit-support--animation-6.is-animated .ys-statutory-audit-support__head,
.ys-statutory-audit-mfrs--animation-6.is-animated .ys-statutory-audit-mfrs__head,
.ys-review-engagements-services--animation-6.is-animated .ys-review-engagements-services__head {
  animation: ys-section-rise-in 820ms ease-out both;
}

.ys-statutory-audit-support--animation-6.is-animated .ys-statutory-audit-support__viewport,
.ys-statutory-audit-mfrs--animation-6.is-animated .ys-statutory-audit-mfrs__viewport,
.ys-review-engagements-services--animation-6.is-animated .ys-review-engagements-services__viewport {
  animation: ys-home-testimonials-viewport-enter 1080ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.ys-statutory-audit-support--animation-6.is-animated .ys-statutory-audit-support__card,
.ys-statutory-audit-mfrs--animation-6.is-animated .ys-statutory-audit-mfrs__card,
.ys-review-engagements-services--animation-6.is-animated .ys-review-engagements-services__card {
  animation: ys-home-testimonials-card-enter 900ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.ys-statutory-audit-support--animation-6.is-animated
  .ys-statutory-audit-support__grid-item:nth-child(2)
  .ys-statutory-audit-support__card,
.ys-statutory-audit-mfrs--animation-6.is-animated
  .ys-statutory-audit-mfrs__grid-item:nth-child(2)
  .ys-statutory-audit-mfrs__card,
.ys-review-engagements-services--animation-6.is-animated
  .ys-review-engagements-services__item:nth-child(2)
  .ys-review-engagements-services__card {
  animation-delay: 320ms;
}

.ys-statutory-audit-support--animation-6.is-animated
  .ys-statutory-audit-support__grid-item:nth-child(3)
  .ys-statutory-audit-support__card,
.ys-statutory-audit-mfrs--animation-6.is-animated
  .ys-statutory-audit-mfrs__grid-item:nth-child(3)
  .ys-statutory-audit-mfrs__card,
.ys-review-engagements-services--animation-6.is-animated
  .ys-review-engagements-services__item:nth-child(3)
  .ys-review-engagements-services__card {
  animation-delay: 420ms;
}

.ys-statutory-audit-support--animation-6.is-animated .ys-statutory-audit-support__controls,
.ys-statutory-audit-mfrs--animation-6.is-animated .ys-statutory-audit-mfrs__controls,
.ys-review-engagements-services--animation-6.is-animated .ys-review-engagements-services__controls,
.ys-review-engagements-services--animation-6.is-animated .ys-review-engagements-services__message {
  animation: ys-section-rise-in 760ms ease-out 360ms both;
}

/* Animation 7: CTA split reveal */
.ys-home-cta--animation-7.is-ready:not(.is-animated) .ys-home-cta__left {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.ys-service-copy--animation-7.is-ready:not(.is-animated) .ys-statutory-audit-stat__inner,
.ys-service-copy--animation-7.is-ready:not(.is-animated) .ys-non-statutory-audit-stat__inner,
.ys-service-copy--animation-7.is-ready:not(.is-animated) .ys-review-engagements-stat__inner,
.ys-service-copy--animation-7.is-ready:not(.is-animated)
  .ys-compilation-of-financial-statements-stat__inner,
.ys-faq-section--animation-7.is-ready:not(.is-animated) .ys-faq-section__head,
.ys-faq-section--animation-7.is-ready:not(.is-animated) .ys-faq-section__list {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.ys-who-we-are-split--animation-7.is-ready:not(.is-animated) .ys-who-we-are-stat__column,
.ys-who-we-are-split--animation-7.is-ready:not(.is-animated) .ys-who-we-are-founder__media,
.ys-who-we-are-split--animation-7.is-ready:not(.is-animated) .ys-who-we-are-founder__content {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.ys-home-cta--animation-7.is-ready:not(.is-animated) .ys-home-cta__card {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.ys-home-cta--animation-7.is-animated .ys-home-cta__left {
  animation: ys-section-rise-in 700ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.ys-contact-us--animation-7.is-ready:not(.is-animated) .ys-contact-us__header,
.ys-contact-us--animation-7.is-ready:not(.is-animated) .ys-contact-us__card,
.ys-contact-us--animation-7.is-ready:not(.is-animated) .ys-contact-us__info {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.ys-service-copy--animation-7.is-animated .ys-statutory-audit-stat__inner,
.ys-service-copy--animation-7.is-animated .ys-non-statutory-audit-stat__inner,
.ys-service-copy--animation-7.is-animated .ys-review-engagements-stat__inner,
.ys-service-copy--animation-7.is-animated .ys-compilation-of-financial-statements-stat__inner,
.ys-faq-section--animation-7.is-animated .ys-faq-section__head {
  animation: ys-section-rise-in 860ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.ys-faq-section--animation-7.is-animated .ys-faq-section__list {
  animation: ys-section-rise-in 860ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.ys-contact-us--animation-7.is-animated .ys-contact-us__header {
  animation: ys-section-rise-in 860ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.ys-contact-us--animation-7.is-animated .ys-contact-us__card {
  animation: ys-section-rise-in 860ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.ys-contact-us--animation-7.is-animated .ys-contact-us__info {
  animation: ys-section-rise-in 860ms cubic-bezier(0.22, 1, 0.36, 1) 320ms both;
}

.ys-who-we-are-split--animation-7.is-animated .ys-who-we-are-stat__column:first-child,
.ys-who-we-are-split--animation-7.is-animated .ys-who-we-are-founder__media {
  animation: ys-section-rise-in 700ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.ys-who-we-are-split--animation-7.is-animated .ys-who-we-are-stat__column:last-child,
.ys-who-we-are-split--animation-7.is-animated .ys-who-we-are-founder__content {
  animation: ys-section-rise-in 700ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.ys-home-cta--animation-7.is-animated .ys-home-cta__card {
  animation: ys-section-rise-in 700ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.ys-who-we-are-credentials--animation-2.is-animated .ys-who-we-are-credentials__logo-item {
  animation-duration: 900ms;
}

.ys-who-we-are-leadership--animation-3.is-animated .ys-who-we-are-leadership__title {
  animation-duration: 840ms;
}

.ys-who-we-are-leadership--animation-3.is-animated .ys-who-we-are-leadership__card {
  animation-duration: 960ms;
}

.ys-who-we-are-vision-mission--animation-4.is-animated .ys-who-we-are-vision-mission__section,
.ys-who-we-are-associates--animation-4.is-animated .ys-who-we-are-associates__card {
  animation-duration: 860ms;
}

.ys-who-we-are-associates--animation-4.is-animated .ys-who-we-are-associates__heading,
.ys-who-we-are-core-value--animation-5.is-animated .ys-who-we-are-core-value__title {
  animation-duration: 820ms;
}

.ys-who-we-are-core-value--animation-5.is-animated .ys-who-we-are-core-value__card {
  animation-duration: 900ms;
}

.ys-who-we-are-core-value--animation-5.is-animated .ys-who-we-are-core-value__icon-wrap {
  animation-duration: 760ms;
}

.ys-who-we-are-split--animation-7.is-animated .ys-who-we-are-stat__column:first-child,
.ys-who-we-are-split--animation-7.is-animated .ys-who-we-are-founder__media {
  animation-duration: 860ms;
}

.ys-who-we-are-split--animation-7.is-animated .ys-who-we-are-stat__column:last-child,
.ys-who-we-are-split--animation-7.is-animated .ys-who-we-are-founder__content,
.ys-home-cta--who-we-are.ys-home-cta--animation-7.is-animated .ys-home-cta__left,
.ys-home-cta--who-we-are.ys-home-cta--animation-7.is-animated .ys-home-cta__card {
  animation-duration: 860ms;
}

/* Animation 8: footer stagger */
.ys-global-footer--animation-8.is-ready:not(.is-animated) .ys-footer-brand,
.ys-global-footer--animation-8.is-ready:not(.is-animated) .ys-footer-nav,
.ys-global-footer--animation-8.is-ready:not(.is-animated) .ys-footer-contact {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}

.ys-global-footer--animation-8.is-ready:not(.is-animated) .ys-global-footer__bottom {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}

.ys-global-footer--animation-8.is-animated .ys-footer-brand {
  animation: ys-section-rise-in 720ms ease-out both;
}

.ys-global-footer--animation-8.is-animated .ys-footer-nav {
  animation: ys-section-rise-in 720ms ease-out 100ms both;
}

.ys-global-footer--animation-8.is-animated .ys-footer-contact {
  animation: ys-section-rise-in 720ms ease-out 200ms both;
}

.ys-global-footer--animation-8.is-animated .ys-global-footer__bottom {
  animation: ys-footer-bottom-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) 260ms both;
}

@keyframes ys-section-rise-in {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ys-home-services-card-enter {
  0% {
    opacity: 0;
    transform: perspective(1200px) rotateX(-10deg) translate3d(0, 40px, 0);
  }

  100% {
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) translate3d(0, 0, 0);
  }
}

@keyframes ys-home-sectors-card-enter {
  0% {
    opacity: 0;
    transform: translate3d(var(--ys-sectors-shift, 0), 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.ys-home-sectors__card:nth-child(odd) {
  --ys-sectors-shift: -36px;
}

.ys-home-sectors__card:nth-child(even) {
  --ys-sectors-shift: 36px;
}

@keyframes ys-home-usp-card-enter {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  65% {
    opacity: 1;
    transform: scale(1.03);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ys-home-usp-badge-enter {
  0% {
    transform: scale(0.72);
  }

  65% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes ys-home-testimonials-viewport-enter {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes ys-home-testimonials-card-enter {
  from {
    opacity: 0;
    transform: translate3d(28px, 0, 0) rotate(-1.5deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes ys-footer-bottom-enter {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 1024px) {
  .ys-desktop-header {
    display: none;
  }

  .ys-site-header {
    background: #fff;
    border-bottom: 0;
    box-shadow: 0 16px 48px rgba(79, 212, 184, 0.2);
  }

  .ys-mobile-header {
    display: block;
  }

  .ys-mobile-header__bar {
    align-items: center;
    background: #fff;
    box-shadow:
      0 1px 1.5px rgba(0, 0, 0, 0.1),
      0 1px 1px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    width: 100%;
  }

  .ys-mobile-header__actions {
    gap: 8px;
  }

  .ys-mobile-menu {
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 20px;
  }

  .ys-mobile-menu[hidden] {
    display: none;
  }

  .ys-mobile-menu__link {
    align-self: flex-start;
    padding: 4px 0;
  }

  .ys-mobile-menu__link::after {
    bottom: -2px;
    height: 2px;
  }

  .ys-mobile-menu__services {
    align-items: flex-start;
    display: grid;
    gap: 10px;
  }

  .ys-mobile-menu__services > button {
    align-self: flex-start;
    justify-self: start;
  }

  .ys-mobile-menu__services > button img.ys-nav__chevron {
    height: 7px;
    transition: transform 160ms ease;
    width: 12px;
  }

  .ys-mobile-menu__services > button.is-expanded img.ys-nav__chevron {
    transform: rotate(180deg);
  }

  .ys-mobile-menu__submenu {
    border-left: 1px solid #e2e8e8;
    display: grid;
    gap: 2px;
    margin: 0 0 0 6px;
    max-width: 320px;
    padding: 0 0 0 12px;
  }

  .ys-mobile-menu__submenu[hidden] {
    display: none;
  }

  .ys-global-footer {
    padding-top: 56px;
  }

  .ys-global-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .ys-footer-brand,
  .ys-footer-nav,
  .ys-footer-contact {
    width: auto;
  }

  .ys-home-hero {
    min-height: 560px;
    padding: 56px 20px;
  }

  .ys-who-we-are-hero {
    justify-content: center;
    min-height: 345px;
    padding: 140px 20px 60px 20px;
  }

  .ys-home-hero__content {
    gap: 18px;
  }

  .ys-who-we-are-hero__content {
    gap: 18px;
    max-width: 600px;
  }

  .ys-home-hero__eyebrow-wrap {
    align-items: flex-start;
    border: none;
    border-radius: 0;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  .ys-home-hero__eyebrow-item {
    border: 1px solid #4fd4b8;
    border-radius: 30px;
    display: inline-flex;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 18px;
    padding: 8px 12px;
  }

  .ys-home-hero__eyebrow-item + .ys-home-hero__eyebrow-item::before {
    content: none;
  }

  .ys-home-hero__title {
    font-size: 42px;
    line-height: 44px;
  }

  .ys-who-we-are-hero__title {
    font-size: 56px;
    line-height: 64.96px;
  }

  .ys-home-hero__subhead {
    font-size: 15px;
    line-height: 26px;
  }

  .ys-who-we-are-hero__subhead {
    color: #fff;
    font-size: 17px;
    line-height: 30px;
    max-width: 334px;
    padding: 0;
  }

  /* .ys-home-hero__button {
    width: 100%;
  } */

  .ys-who-we-are-hero__subhead br {
    display: none;
  }

  .ys-home-stat {
    padding: 32px 20px;
  }

  .ys-home-stat__inner {
    flex-direction: column;
    gap: 20px;
  }

  .ys-home-stat__item {
    border-radius: 0 12px 0 12px;
    flex: 0 0 auto;
    max-width: 320px;
    width: 100%;
  }

  .ys-home-stat__value {
    font-size: 44px;
    line-height: 40px;
  }

  .ys-home-stat__label {
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 20px;
  }

  .ys-home-services {
    padding: 60px 20px;
  }

  .ys-home-services__inner {
    gap: 36px;
  }

  .ys-home-services__head {
    gap: 4px;
  }

  .ys-home-services__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-home-services__viewport {
    display: block;
    justify-content: flex-start;
    width: 100%;
  }

  .ys-home-services__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    grid-template-columns: none;
    justify-content: flex-start;
    margin: 0;
    width: max-content;
  }

  .ys-home-services__card {
    flex: 0 0 min(313px, calc(100vw - 120px));
    min-height: 395px;
  }

  .ys-home-services__controls {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .ys-home-services__control {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8e8;
    border-radius: 22px;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    padding: 1px;
    transition:
      border-color 180ms ease,
      color 180ms ease;
    width: 44px;
  }

  .ys-home-services__control:hover,
  .ys-home-services__control:focus-visible {
    border: var(--stroke-weight-1, 1px) solid var(--color-cyan-32, #1f8585);
    background: #1f8585;
    color: white;
  }

  .ys-home-services__control[disabled] {
    cursor: default;
    opacity: 0.45;
  }

  .ys-home-services__control svg {
    display: block;
    height: 18px;
    width: 18px;
  }

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

  .ys-home-services__dot {
    background: #c5d0d0;
    border: 0;
    border-radius: 10px;
    height: 8px;
    padding: 0;
    width: 8px;
  }

  .ys-home-services__dot.is-active {
    background: #4fd4b8;
    width: 24px;
  }

  .ys-home-sectors {
    padding: 56px 24px;
  }

  .ys-home-sectors__title {
    font-size: 32px;
    line-height: 40px;
  }

  .ys-home-sectors__subhead {
    font-size: 15px;
    line-height: 26px;
  }

  .ys-home-sectors__card {
    min-height: 160px;
    padding: 16px;
    width: 160px;
  }

  .ys-home-sectors__icon {
    height: 72px;
    width: 72px;
  }

  .ys-home-sectors__name {
    font-size: 14px;
    line-height: 20px;
  }

  .ys-home-usp {
    padding: 64px 24px;
  }

  .ys-home-usp__title {
    font-size: 32px;
    line-height: 40px;
  }

  .ys-home-usp__subhead {
    font-size: 15px;
    line-height: 26px;
  }

  .ys-home-usp__cards {
    flex-direction: column;
  }

  .ys-home-usp__card {
    width: 100%;
  }

  .ys-home-usp__title-slot {
    height: auto;
  }

  .ys-home-cta {
    padding: 64px 24px;
  }

  .ys-home-cta__inner {
    flex-direction: column;
    gap: 40px;
  }

  .ys-home-cta__title {
    font-size: 36px;
    line-height: 44px;
  }

  .ys-home-cta__card {
    padding: 32px 24px;
    width: 100%;
  }

  .ys-home-cta__row {
    flex-direction: column;
    gap: 10px;
  }

  .ys-home-cta--statutory-audit .ys-home-cta__left,
  .ys-home-cta--statutory-audit .ys-home-cta__title,
  .ys-home-cta--statutory-audit .ys-home-cta__desc {
    max-width: none;
  }

  .ys-home-cta--non-statutory-audit .ys-home-cta__left,
  .ys-home-cta--non-statutory-audit .ys-home-cta__title,
  .ys-home-cta--non-statutory-audit .ys-home-cta__desc {
    max-width: none;
  }

  .ys-contact-us {
    padding: 64px 24px;
  }

  .ys-contact-us__inner {
    gap: 40px;
  }

  .ys-contact-us__title {
    font-size: 36px;
    line-height: 44px;
  }

  .ys-contact-us__intro {
    font-size: 22px;
    line-height: 32px;
  }

  .ys-contact-us__content {
    align-items: stretch;
    flex-direction: column;
    gap: 40px;
  }

  .ys-contact-us__card,
  .ys-contact-us__info {
    max-width: none;
    width: 100%;
  }

  .ys-contact-us__direction-links {
    gap: 24px;
  }

  .ys-home-testimonials {
    padding: 64px 24px;
  }

  .ys-home-testimonials__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-home-testimonials__card {
    width: min(368px, calc(100vw - 120px));
  }

  .ys-who-we-are-stat {
    padding: 60px 24px;
  }

  .ys-who-we-are-stat__columns {
    flex-direction: column;
    gap: 28px;
  }

  .ys-who-we-are-stat__lead {
    font-size: 20px;
    line-height: 30px;
  }

  .ys-who-we-are-stat__copy {
    font-size: 16px;
    line-height: 28px;
  }

  .ys-who-we-are-stat__spacer {
    height: 20px !important;
  }

  .ys-who-we-are-founder {
    padding: 60px 24px;
  }

  .ys-who-we-are-founder__inner {
    align-items: center;
    flex-direction: column;
    gap: 40px;
  }

  .ys-who-we-are-founder__media {
    align-self: center;
    flex: none;
    max-width: 489px;
    width: min(100%, 489px);
  }

  .ys-who-we-are-founder__portrait {
    display: block;
    height: auto;
    margin: 0 auto !important;
    min-height: 0;
    padding-top: min(97.546%, 477px);
    position: relative;
  }

  .ys-who-we-are-founder__portrait img {
    bottom: 0;
    left: 50%;
    height: 132%;
    max-height: none;
    max-width: none;
    position: absolute;
    transform: translateX(-50%);
    width: auto;
  }

  .ys-who-we-are-founder__content {
    width: 100%;
  }

  .ys-who-we-are-founder__eyebrow,
  .ys-who-we-are-founder__name,
  .ys-who-we-are-founder__credentials,
  .ys-who-we-are-founder__copy {
    text-align: center;
  }

  .ys-who-we-are-founder__name {
    justify-content: center;
  }

  .ys-who-we-are-founder__credentials {
    margin-bottom: 36px;
  }

  .ys-who-we-are-leadership {
    padding: 0 24px 60px;
  }

  .ys-who-we-are-leadership__title {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
  }

  .ys-who-we-are-leadership__grid {
    align-items: center;
    flex-direction: column;
    gap: 32px;
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 0;
  }

  .ys-who-we-are-leadership__card {
    align-items: center;
    flex: none;
    max-width: 270px;
    width: 100%;
  }

  .ys-who-we-are-leadership__text {
    align-items: center;
    padding: 0;
  }

  .ys-who-we-are-associates {
    padding: 60px 24px;
  }

  .ys-who-we-are-associates__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-who-we-are-credentials {
    padding: 48px 24px;
  }

  .ys-who-we-are-credentials__inner {
    gap: 32px;
  }

  .ys-who-we-are-credentials__logos {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  .ys-who-we-are-vision-mission {
    padding: 60px 24px;
  }

  .ys-who-we-are-vision-mission__inner {
    gap: 40px;
  }

  .ys-who-we-are-vision-mission__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-who-we-are-vision-mission__statement,
  .ys-who-we-are-mission__list {
    padding-left: 0;
  }

  .ys-who-we-are-vision-mission__statement,
  .ys-who-we-are-mission__text {
    font-size: 18px;
    line-height: 24px;
  }

  .ys-who-we-are-mission__item {
    gap: 16px;
    justify-content: flex-start;
  }

  .ys-who-we-are-core-value {
    padding: 60px 24px;
  }

  .ys-who-we-are-core-value__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-who-we-are-core-value__grid {
    align-items: center;
    flex-direction: column;
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 0;
  }

  .ys-who-we-are-core-value__grid > .wp-block-group {
    flex: none;
    max-width: 320px;
    width: 100%;
  }

  .ys-who-we-are-core-value__card {
    padding: 29px;
    min-height: 0;
  }

  .ys-statutory-audit-support {
    padding: 60px 24px;
  }

  .ys-statutory-audit-support__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-statutory-audit-support__viewport {
    display: block;
    overflow: hidden;
    width: 100%;
  }

  .ys-statutory-audit-support__grid {
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-start;
    margin: 0;
    overflow: visible;
    padding-bottom: 0;
    transition: transform 240ms ease;
    width: max-content;
  }

  .ys-statutory-audit-support__grid-item {
    flex: 0 0 min(313px, calc(100vw - 120px));
    width: min(313px, calc(100vw - 120px));
  }

  .ys-statutory-audit-support__card {
    gap: 30px;
    min-height: 338px;
    padding: 29px;
  }

  .ys-statutory-audit-support__controls {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .ys-statutory-audit-support__control {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8e8;
    border-radius: 22px;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    padding: 1px;
    transition:
      border-color 180ms ease,
      color 180ms ease;
    width: 44px;
  }

  .ys-statutory-audit-support__control:hover,
  .ys-statutory-audit-support__control:focus-visible {
    border-color: #1f8585;
    background: #1f8585;
    color: white;
  }

  .ys-statutory-audit-support__control[disabled] {
    cursor: default;
    opacity: 0.45;
  }

  .ys-statutory-audit-support__control svg {
    display: block;
    height: 18px;
    width: 18px;
  }

  .ys-statutory-audit-support__dots {
    align-items: center;
    display: flex;
    gap: 8px;
  }

  .ys-statutory-audit-support__dot {
    background: #c5d0d0;
    border: 0;
    border-radius: 10px;
    height: 8px;
    padding: 0;
    width: 8px;
  }

  .ys-statutory-audit-support__dot.is-active {
    background: #4fd4b8;
    width: 24px;
  }

  .ys-statutory-audit-why-choose-us {
    padding: 60px 24px;
  }

  .ys-statutory-audit-why-choose-us__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-statutory-audit-why-choose-us__viewport {
    display: block;
    overflow: hidden;
    width: 100%;
  }

  .ys-statutory-audit-why-choose-us__grid {
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-start;
    margin: 0;
    overflow: visible;
    padding-bottom: 0;
    transition: transform 240ms ease;
    width: max-content;
  }

  .ys-statutory-audit-why-choose-us__grid-item {
    flex: 0 0 min(313px, calc(100vw - 120px));
    width: min(313px, calc(100vw - 120px));
  }

  .ys-statutory-audit-why-choose-us__card {
    min-height: 245px;
    padding: 29px;
  }

  .ys-statutory-audit-why-choose-us__controls {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .ys-statutory-audit-why-choose-us__control {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8e8;
    border-radius: 22px;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    padding: 1px;
    transition:
      border-color 180ms ease,
      color 180ms ease;
    width: 44px;
  }

  .ys-statutory-audit-why-choose-us__control:hover,
  .ys-statutory-audit-why-choose-us__control:focus-visible {
    border-color: #1f8585;
    background: #1f8585;
    color: white;
  }

  .ys-statutory-audit-why-choose-us__control[disabled] {
    cursor: default;
    opacity: 0.45;
  }

  .ys-statutory-audit-why-choose-us__control svg {
    display: block;
    height: 18px;
    width: 18px;
  }

  .ys-statutory-audit-why-choose-us__dots {
    align-items: center;
    display: flex;
    gap: 8px;
  }

  .ys-statutory-audit-why-choose-us__dot {
    background: #c5d0d0;
    border: 0;
    border-radius: 10px;
    height: 8px;
    padding: 0;
    width: 8px;
  }

  .ys-statutory-audit-why-choose-us__dot.is-active {
    background: #4fd4b8;
    width: 24px;
  }

  .ys-statutory-audit-mfrs {
    padding: 60px 24px;
  }

  .ys-statutory-audit-mfrs__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-statutory-audit-mfrs__viewport {
    display: block;
    overflow: hidden;
    width: 100%;
  }

  .ys-statutory-audit-mfrs__grid {
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-start;
    margin: 0;
    overflow: visible;
    padding-bottom: 0;
    transition: transform 240ms ease;
    width: max-content;
  }

  .ys-statutory-audit-mfrs__grid-item {
    flex: 0 0 min(280px, calc(100vw - 120px));
    width: min(280px, calc(100vw - 120px));
  }

  .ys-statutory-audit-mfrs__card {
    gap: 24px;
    min-height: 162px;
    padding: 29px;
  }

  .ys-statutory-audit-mfrs__controls {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .ys-statutory-audit-mfrs__control {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8e8;
    border-radius: 22px;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    padding: 1px;
    transition:
      border-color 180ms ease,
      color 180ms ease;
    width: 44px;
  }

  .ys-statutory-audit-mfrs__control:hover,
  .ys-statutory-audit-mfrs__control:focus-visible {
    border-color: #1f8585;
    background: #1f8585;
    color: white;
  }

  .ys-statutory-audit-mfrs__control[disabled] {
    cursor: default;
    opacity: 0.45;
  }

  .ys-statutory-audit-mfrs__control svg {
    display: block;
    height: 18px;
    width: 18px;
  }

  .ys-statutory-audit-mfrs__dots {
    align-items: center;
    display: flex;
    gap: 8px;
  }

  .ys-statutory-audit-mfrs__dot {
    background: #c5d0d0;
    border: 0;
    border-radius: 10px;
    height: 8px;
    padding: 0;
    width: 8px;
  }

  .ys-statutory-audit-mfrs__dot.is-active {
    background: #4fd4b8;
    width: 24px;
  }

  .ys-statutory-audit-how-it-works {
    padding: 60px 24px;
  }

  .ys-statutory-audit-how-it-works__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-statutory-audit-how-it-works__steps {
    flex-direction: column;
    gap: 100px;
    max-width: 360px;
  }

  .ys-statutory-audit-how-it-works__step {
    flex: 1 1 auto;
    max-width: 360px;
    width: 100%;
  }

  .ys-statutory-audit-how-it-works__step:not(:last-child)::after {
    display: none;
  }

  .ys-statutory-audit-how-it-works__step:not(:last-child)
    .ys-statutory-audit-how-it-works__badge::after {
    background: linear-gradient(180deg, #43dfd4 0%, #1c9a91 50%, #076f67 100%);
    content: '';
    height: 80px;
    left: 50%;
    position: absolute;
    top: calc(100% + 10px);
    transform: translateX(-50%);
    width: 3px;
  }

  .ys-faq-section {
    padding: 60px 24px;
  }

  .ys-faq-section__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-faq-section__list {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .ys-mobile-header__bar {
    padding: 52px 20px 12px;
  }

  .ys-header-logo,
  .ys-header-logo img {
    width: min(180px, 46vw);
  }

  .ys-language-toggle a {
    min-width: 48px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .ys-global-footer {
    padding: 48px 20px 28px;
  }

  .ys-global-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .ys-footer-brand {
    gap: 28px;
  }

  .ys-footer-brand__logo,
  .ys-footer-brand__logo img {
    width: 210px;
  }

  .ys-footer-badges {
    flex-wrap: wrap;
  }

  .ys-footer-nav {
    gap: 8px;
  }

  .ys-footer-contact__item a {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .ys-global-footer__bottom {
    margin-left: -20px;
    margin-right: -20px;
  }

  .ys-page-hero {
    min-height: 420px;
    padding: 140px 20px 60px 20px;
  }

  .ys-page-hero__title {
    font-size: 42px;
    line-height: 44px;
  }

  .ys-page-hero__subhead {
    font-size: 18px;
    line-height: 26px;
  }

  .ys-page-hero__button {
    font-size: 15px;
    min-height: 48px;
    padding: 12px 20px;
  }

  .ys-page-hero--statutory-audit .ys-page-hero__image--desktop {
    display: none;
  }

  .ys-page-hero--statutory-audit .ys-page-hero__image--mobile {
    display: block;
  }

  .ys-page-hero--non-statutory-audit .ys-page-hero__image--desktop {
    display: none;
  }

  .ys-page-hero--non-statutory-audit .ys-page-hero__image--mobile {
    display: block;
  }

  .ys-page-hero--review-engagements .ys-page-hero__image--desktop {
    display: none;
  }

  .ys-page-hero--review-engagements .ys-page-hero__image--mobile {
    display: block;
  }

  .ys-page-hero--compilation-of-financial-statements .ys-page-hero__image--desktop {
    display: none;
  }

  .ys-page-hero--compilation-of-financial-statements .ys-page-hero__image--mobile {
    display: block;
  }

  .ys-non-statutory-audit-stat {
    padding: 48px 20px;
  }

  .ys-non-statutory-audit-stat__title {
    font-size: 32px;
    line-height: 38px;
  }

  .ys-non-statutory-audit-stat__copy,
  .ys-non-statutory-audit-stat__list,
  .ys-non-statutory-audit-stat__item {
    font-size: 16px;
    line-height: 28px;
  }

  .ys-non-statutory-audit-stat__title + .ys-non-statutory-audit-stat__copy {
    margin-top: 24px;
  }

  .ys-non-statutory-audit-services {
    padding: 60px 24px;
  }

  .ys-review-engagements-services {
    padding: 60px 24px;
  }

  .ys-compilation-of-financial-statements-services {
    padding: 60px 24px;
  }

  .ys-non-statutory-audit-services__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-review-engagements-services__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-compilation-of-financial-statements-services__title {
    font-size: 36px;
    line-height: 42px;
  }

  .ys-non-statutory-audit-services__viewport {
    display: block;
    overflow: hidden;
    width: 100%;
  }

  .ys-review-engagements-services__viewport {
    display: block;
    overflow: hidden;
    width: 100%;
  }

  .ys-compilation-of-financial-statements-services__viewport {
    display: block;
    overflow: hidden;
    width: 100%;
  }

  .ys-carousel-scrollable.ys-carousel-scrollable {
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    user-select: none;
  }

  .ys-carousel-scrollable.ys-carousel-scrollable::-webkit-scrollbar {
    display: none;
  }

  .ys-carousel-scrollable.ys-carousel-scrollable.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }

  .ys-carousel-scrollable > * {
    width: max-content;
  }

  .ys-carousel-scrollable > * > * {
    scroll-snap-align: center;
  }

  .ys-non-statutory-audit-services__grid {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-start;
    margin: 0;
    overflow: visible;
    padding-bottom: 0;
    transition: transform 240ms ease;
    width: max-content;
  }

  .ys-review-engagements-services__grid {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-start;
    margin: 0;
    overflow: visible;
    padding-bottom: 0;
    transition: transform 240ms ease;
    width: max-content;
  }

  .ys-compilation-of-financial-statements-services__grid {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-start;
    margin: 0;
    overflow: visible;
    padding-bottom: 0;
    transition: transform 240ms ease;
    width: max-content;
  }

  .ys-non-statutory-audit-services__item {
    flex: 0 0 min(313px, calc(100vw - 120px));
    width: min(313px, calc(100vw - 120px));
  }

  .ys-review-engagements-services__item {
    flex: 0 0 min(313px, calc(100vw - 120px));
    width: min(313px, calc(100vw - 120px));
  }

  .ys-compilation-of-financial-statements-services__item {
    flex: 0 0 min(313px, calc(100vw - 120px));
    width: min(313px, calc(100vw - 120px));
  }

  .ys-non-statutory-audit-services__card {
    min-height: 257px;
    padding: 29px;
  }

  .ys-review-engagements-services__card {
    min-height: 245px;
    padding: 29px;
  }

  .ys-compilation-of-financial-statements-services__card {
    min-height: 341px;
    padding: 29px;
  }

  .ys-non-statutory-audit-services__controls {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .ys-review-engagements-services__controls {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .ys-compilation-of-financial-statements-services__controls {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .ys-non-statutory-audit-services__control {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8e8;
    border-radius: 22px;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    padding: 1px;
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease;
    width: 44px;
  }

  .ys-non-statutory-audit-services__control:hover,
  .ys-non-statutory-audit-services__control:focus-visible {
    background: #1f8585;
    border-color: #1f8585;
    color: #fff;
  }

  .ys-review-engagements-services__control {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8e8;
    border-radius: 22px;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    padding: 1px;
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease;
    width: 44px;
  }

  .ys-review-engagements-services__control:hover,
  .ys-review-engagements-services__control:focus-visible {
    background: #1f8585;
    border-color: #1f8585;
    color: #fff;
  }

  .ys-compilation-of-financial-statements-services__control {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8e8;
    border-radius: 22px;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    padding: 1px;
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease;
    width: 44px;
  }

  .ys-compilation-of-financial-statements-services__control:hover,
  .ys-compilation-of-financial-statements-services__control:focus-visible {
    background: #1f8585;
    border-color: #1f8585;
    color: #fff;
  }

  .ys-non-statutory-audit-services__control[disabled] {
    cursor: default;
    opacity: 0.45;
  }

  .ys-review-engagements-services__control[disabled] {
    cursor: default;
    opacity: 0.45;
  }

  .ys-compilation-of-financial-statements-services__control[disabled] {
    cursor: default;
    opacity: 0.45;
  }

  .ys-non-statutory-audit-services__control svg {
    display: block;
    height: 18px;
    width: 18px;
  }

  .ys-review-engagements-services__control svg {
    display: block;
    height: 18px;
    width: 18px;
  }

  .ys-compilation-of-financial-statements-services__control svg {
    display: block;
    height: 18px;
    width: 18px;
  }

  .ys-non-statutory-audit-services__dots {
    align-items: center;
    display: flex;
    gap: 8px;
  }

  .ys-review-engagements-services__dots {
    align-items: center;
    display: flex;
    gap: 8px;
  }

  .ys-compilation-of-financial-statements-services__dots {
    align-items: center;
    display: flex;
    gap: 8px;
  }

  .ys-non-statutory-audit-services__dot {
    background: #c5d0d0;
    border: 0;
    border-radius: 10px;
    height: 8px;
    padding: 0;
    width: 8px;
  }

  .ys-review-engagements-services__dot {
    background: #c5d0d0;
    border: 0;
    border-radius: 10px;
    height: 8px;
    padding: 0;
    width: 8px;
  }

  .ys-compilation-of-financial-statements-services__dot {
    background: #c5d0d0;
    border: 0;
    border-radius: 10px;
    height: 8px;
    padding: 0;
    width: 8px;
  }

  .ys-non-statutory-audit-services__dot.is-active {
    background: #4fd4b8;
    width: 24px;
  }

  .ys-review-engagements-services__dot.is-active {
    background: #4fd4b8;
    width: 24px;
  }

  .ys-compilation-of-financial-statements-services__dot.is-active {
    background: #4fd4b8;
    width: 24px;
  }

  .ys-who-we-are-stat {
    padding: 48px 20px;
  }

  .ys-statutory-audit-stat,
  .ys-review-engagements-stat,
  .ys-compilation-of-financial-statements-stat {
    padding: 48px 20px;
  }

  .ys-statutory-audit-stat__inner,
  .ys-review-engagements-stat__inner,
  .ys-compilation-of-financial-statements-stat__inner {
    gap: 24px;
  }

  .ys-statutory-audit-stat__title,
  .ys-review-engagements-stat__title,
  .ys-compilation-of-financial-statements-stat__title {
    font-size: 32px;
    line-height: 38px;
  }

  .ys-statutory-audit-stat__copy,
  .ys-review-engagements-stat__copy,
  .ys-compilation-of-financial-statements-stat__copy {
    font-size: 16px;
    line-height: 28px;
  }

  .ys-statutory-audit-support {
    padding: 48px 20px;
  }

  .ys-statutory-audit-support__title {
    font-size: 30px;
    line-height: 34px;
  }

  .ys-statutory-audit-support__card {
    gap: 24px;
    min-height: 0;
    padding: 24px 20px;
  }

  .ys-statutory-audit-why-choose-us {
    padding: 48px 20px;
  }

  .ys-statutory-audit-why-choose-us__title {
    font-size: 30px;
    line-height: 34px;
  }

  .ys-statutory-audit-why-choose-us__intro {
    font-size: 16px;
    line-height: 28px;
  }

  .ys-statutory-audit-why-choose-us__card {
    gap: 24px;
    min-height: 245px;
    padding: 24px 20px;
  }

  .ys-non-statutory-audit-services {
    padding: 48px 20px;
  }

  .ys-review-engagements-services {
    padding: 48px 20px;
  }

  .ys-compilation-of-financial-statements-services {
    padding: 48px 20px;
  }

  .ys-non-statutory-audit-services__title {
    font-size: 30px;
    line-height: 34px;
  }

  .ys-review-engagements-services__title {
    font-size: 30px;
    line-height: 34px;
  }

  .ys-compilation-of-financial-statements-services__title {
    font-size: 30px;
    line-height: 34px;
  }

  .ys-non-statutory-audit-services__intro {
    font-size: 16px;
    line-height: 28px;
  }

  .ys-review-engagements-services__intro {
    font-size: 16px;
    line-height: 28px;
  }

  .ys-compilation-of-financial-statements-services__intro {
    font-size: 16px;
    line-height: 28px;
  }

  .ys-non-statutory-audit-services__card {
    gap: 24px;
    min-height: 257px;
    padding: 24px 20px;
  }

  .ys-review-engagements-services__card {
    gap: 24px;
    min-height: 245px;
    padding: 24px 20px;
  }

  .ys-compilation-of-financial-statements-services__card {
    gap: 24px;
    min-height: 341px;
    padding: 24px 20px;
  }

  .ys-review-engagements-services__message {
    font-size: 20px;
    line-height: 30px;
    max-width: 100%;
  }

  .ys-review-engagements-comparison {
    padding: 48px 20px;
  }

  .ys-review-engagements-comparison__inner {
    gap: 32px;
  }

  .ys-review-engagements-comparison__title {
    font-size: 32px;
    line-height: 38px;
  }

  .ys-home-cta--compilation-of-financial-statements .ys-home-cta__left,
  .ys-home-cta--compilation-of-financial-statements .ys-home-cta__title,
  .ys-home-cta--compilation-of-financial-statements .ys-home-cta__desc {
    max-width: none;
  }

  .ys-statutory-audit-mfrs {
    padding: 48px 20px;
  }

  .ys-statutory-audit-mfrs__inner {
    gap: 40px;
  }

  .ys-statutory-audit-mfrs__title {
    font-size: 30px;
    line-height: 34px;
  }

  .ys-statutory-audit-mfrs__intro {
    font-size: 16px;
    line-height: 28px;
  }

  .ys-statutory-audit-mfrs__card {
    gap: 24px;
    min-height: 162px;
    padding: 24px 20px;
  }

  .ys-statutory-audit-how-it-works {
    padding: 60px 20px;
  }

  .ys-statutory-audit-how-it-works__inner {
    gap: 48px;
  }

  .ys-statutory-audit-how-it-works__head {
    align-items: flex-start;
    gap: 4px;
  }

  .ys-statutory-audit-how-it-works__eyebrow {
    text-align: left;
  }

  .ys-statutory-audit-how-it-works__title {
    font-size: 36px;
    line-height: 42px;
    text-align: left;
  }

  .ys-statutory-audit-how-it-works__steps {
    gap: 40px;
    max-width: 100%;
  }

  .ys-statutory-audit-how-it-works__step {
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
    max-width: 100%;
    width: 100%;
  }

  .ys-statutory-audit-how-it-works__step:not(:last-child)::after {
    background: linear-gradient(180deg, #43dfd4 0%, #1c9a91 50%, #076f67 100%);
    bottom: -35px;
    content: '';
    display: block;
    left: 19px;
    position: absolute;
    height: auto;
    top: 44px;
    width: 3px;
  }

  .ys-statutory-audit-how-it-works__step:not(:last-child)
    .ys-statutory-audit-how-it-works__badge::after {
    content: none;
  }

  .ys-statutory-audit-how-it-works__badge {
    border-radius: 7px;
    flex-shrink: 0;
    font-size: 22px;
    height: 40px;
    min-width: 40px;
    padding: 6px;
  }

  .ys-statutory-audit-how-it-works__step-body {
    align-items: flex-start;
  }

  .ys-statutory-audit-how-it-works__step-title,
  .ys-statutory-audit-how-it-works__step-copy {
    text-align: left;
  }

  .ys-statutory-audit-how-it-works__button {
    width: 100%;
  }

  .ys-faq-section {
    padding: 48px 20px;
  }

  .ys-faq-section__inner {
    gap: 40px;
  }

  .ys-faq-section__eyebrow {
    font-size: 13px;
    letter-spacing: 2.4px;
    line-height: 18px;
  }

  .ys-faq-section__title {
    font-size: 30px;
    line-height: 34px;
  }

  .ys-accordion__trigger {
    gap: 16px;
    padding: 18px 20px;
  }

  .ys-accordion__title {
    font-size: 18px;
    line-height: 24px;
  }

  .ys-accordion__panel {
    padding: 0;
  }

  .ys-accordion__copy {
    font-size: 14px;
    line-height: 24px;
    padding: 0 20px 20px;
  }

  .ys-who-we-are-stat__lead {
    font-size: 18px;
    line-height: 28px;
  }

  .ys-who-we-are-stat__copy {
    font-size: 15px;
    line-height: 26px;
  }

  .ys-who-we-are-founder {
    padding: 48px 20px;
  }

  .ys-who-we-are-founder__inner {
    gap: 32px;
  }

  .ys-who-we-are-founder__eyebrow {
    font-size: 13px;
    letter-spacing: 2.4px;
    line-height: 18px;
  }

  .ys-who-we-are-founder__name {
    font-size: 34px;
    gap: 8px 12px;
    line-height: 38px;
  }

  .ys-who-we-are-founder__nickname,
  .ys-who-we-are-founder__credentials {
    font-size: 22px;
    line-height: 28px;
  }

  .ys-who-we-are-founder__credentials {
    margin-bottom: 28px;
  }

  .ys-who-we-are-founder__copy {
    font-size: 15px;
    line-height: 28px;
  }

  .ys-who-we-are-leadership {
    padding: 0 20px 48px;
  }

  .ys-who-we-are-leadership__inner {
    gap: 28px;
  }

  .ys-who-we-are-leadership__title {
    font-size: 30px;
    line-height: 34px;
  }

  .ys-who-we-are-leadership__grid {
    gap: 24px;
  }

  .ys-who-we-are-leadership__card {
    flex-basis: 100%;
    align-items: center;
    max-width: 270px;
  }

  .ys-who-we-are-associates {
    padding: 48px 20px;
  }

  .ys-who-we-are-associates__inner {
    gap: 28px;
  }

  .ys-who-we-are-associates__title {
    font-size: 30px;
    line-height: 34px;
  }

  .ys-who-we-are-associates__subhead {
    font-size: 15px;
    line-height: 26px;
  }

  .ys-who-we-are-associates__card {
    min-height: 0;
    padding: 20px 16px;
  }

  .ys-who-we-are-associates__logo {
    height: 120px;
  }

  .ys-who-we-are-credentials {
    padding: 40px 20px;
  }

  .ys-who-we-are-credentials__title {
    font-size: 24px;
    line-height: 32px;
  }

  .ys-who-we-are-credentials__logo-item {
    flex-basis: auto;
  }

  .ys-who-we-are-vision-mission {
    padding: 48px 20px;
  }

  .ys-who-we-are-vision-mission__heading {
    gap: 6px;
  }

  .ys-who-we-are-vision-mission__icon-wrap {
    height: 42px;
    width: 42px;
  }

  .ys-who-we-are-vision-mission__icon--vision,
  .ys-who-we-are-vision-mission__icon--mission {
    height: 24px;
    width: 24px;
  }

  .ys-who-we-are-vision-mission__title {
    font-size: 30px;
    line-height: 34px;
  }

  .ys-who-we-are-vision-mission__statement,
  .ys-who-we-are-mission__text {
    font-size: 16px;
    line-height: 22px;
  }

  .ys-who-we-are-mission__item {
    align-items: flex-start;
    gap: 12px;
  }

  .ys-who-we-are-mission__check-wrap {
    flex-basis: 28px;
    height: 28px;
    margin-top: 0;
    width: 28px;
  }

  .ys-who-we-are-mission__check {
    height: 14px;
    width: 14px;
  }

  .ys-who-we-are-core-value {
    padding: 48px 20px;
  }

  .ys-who-we-are-core-value__title {
    font-size: 30px;
    line-height: 34px;
  }

  .ys-who-we-are-core-value__card {
    gap: 24px;
    height: auto;
    min-height: 0;
    padding: 24px 20px;
  }
}

/* =============================================================================
   INSIGHT SINGLE POST
   ============================================================================= */

.ys-page--insight {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ys-insight-archive-hero,
.ys-insight-archive-results {
  background: #fff;
}

.ys-insight-archive-hero {
  padding: 56px 24px 48px;
}

.ys-insight-archive-hero__inner,
.ys-insight-archive-results__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ys-insight-archive-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.ys-insight-archive-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.ys-insight-archive-hero__title {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 80px;
  text-transform: uppercase;
  text-align: center;
  color: #1c9a91;
}

.ys-insight-archive-hero__text {
  max-width: 820px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  color: #0f172a;
}

.ys-insight-archive-hero__search {
  width: 100%;
  display: flex;
  justify-content: center;
}

.ys-insight-archive-hero__search-field {
  position: relative;
  width: 100%;
  max-width: 656px;
}

.ys-insight-archive-hero__search-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 20px;
  height: 20px;
  color: #6b7280;
  transform: translateY(-50%);
  pointer-events: none;
}

.ys-insight-archive-hero__search-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ys-insight-archive-hero__search-field input {
  width: 100%;
  min-height: 42px;
  padding: 9px 14px 9px 42px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #0f172a;
  background: #fff;
}

.ys-insight-archive-hero__search-field input::placeholder {
  color: #6b7280;
}

.ys-insight-archive-hero__search-field input:focus {
  outline: 1px solid #1c9a91;
  border-color: #1c9a91;
}

.ys-insight-archive-hero__tabs {
  width: 100%;
  max-width: 656px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.ys-insight-archive-hero__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.03);
  color: #0f3d3d;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.ys-insight-archive-hero__tab.is-active,
.ys-insight-archive-hero__tab:hover,
.ys-insight-archive-hero__tab:focus-visible {
  background: #1c9a91;
  color: #fff;
}

.ys-insight-archive-hero__tab:hover {
  background: rgba(16, 185, 129, 0.2);
  color: #0f3d3d;
}

.ys-insight-archive-results {
  padding: 0 24px 80px;
}

.ys-insight-archive-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 352px);
  justify-content: center;
  gap: 48px;
}

.ys-insight-card {
  width: 352px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-self: center;
  padding: 10px;
  border-radius: 8px;
}

.ys-insight-card:hover {
  background-color: #f1f5f9;
}

.ys-insight-card:hover
  .ys-insight-card__content
  .ys-insight-card__read-more
  .ys-insight-card__arrow {
  transform: translateX(2px);
}

.ys-insight-card__image-link {
  text-decoration: none;
}

.ys-insight-card__image {
  position: relative;
  aspect-ratio: 444 / 250;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 0 16px 0 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(28, 154, 145, 0.04));
}

.ys-insight-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ys-insight-card__image--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ys-insight-card__image--empty span {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  color: #0a2e2e;
}

.ys-insight-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 10px;
}

.ys-insight-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ys-insight-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.2);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1c9a91;
}

.ys-insight-card__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ys-insight-card__title {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #0a2e2e;
}

.ys-insight-card__title a {
  color: inherit;
  text-decoration: none;
}

.ys-insight-card__excerpt {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #5c6e6e;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.ys-insight-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: #1a6b6b;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.5px;
}

.ys-insight-card__read-more img {
  width: 12px;
  height: 12px;
  display: block;
}

.ys-insight-card__read-more:hover,
.ys-insight-card__read-more:focus-visible,
.ys-insight-card__title a:hover,
.ys-insight-card__title a:focus-visible {
  color: #1f8585;
}

.ys-insight-archive-results__pagination {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ys-insight-archive-results__page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(16, 185, 129, 0.08);
  color: #8ba3a3;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.ys-insight-archive-results__page-number.is-active,
.ys-insight-archive-results__page-number:hover,
.ys-insight-archive-results__page-number:focus-visible {
  background: #1c9a91;
  color: #fff;
}

.ys-insight-archive-results__empty {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #5c6e6e;
  text-align: center;
}

.ys-insight-archive-results__empty {
  padding-top: 24px;
}

@media (max-width: 1240px) {
  .ys-insight-archive-results__grid {
    grid-template-columns: repeat(2, 352px);
  }
}

@media (max-width: 1024px) {
  .ys-insight-archive-hero {
    padding: 48px 24px 40px;
  }

  .ys-insight-archive-hero__title {
    font-size: 56px;
    line-height: 56px;
  }

  .ys-insight-archive-results {
    padding: 0 24px 72px;
  }

  .ys-insight-archive-results__grid {
    gap: 32px 24px;
  }
}

@media (max-width: 767px) {
  .ys-insight-archive-hero {
    padding: 40px 20px 32px;
  }

  .ys-insight-archive-hero__title {
    font-size: 40px;
    line-height: 42px;
  }

  .ys-insight-archive-hero__text {
    font-size: 15px;
    line-height: 26px;
  }

  .ys-insight-archive-hero__tabs {
    width: 100%;
    gap: 10px;
    align-items: center;
    justify-content: start;
    overflow: hidden;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .ys-insight-archive-hero__tabs::-webkit-scrollbar {
    display: none;
  }

  .ys-insight-archive-results {
    padding: 0 20px 64px;
  }

  .ys-insight-archive-results__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ys-insight-card {
    width: min(352px, 100%);
  }

  .ys-insight-card__content {
    padding-left: 0;
  }

  .ys-insight-archive-results__pagination {
    margin-top: 40px;
  }
}

.ys-page--insight-single {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.insight-post-wrap {
  background: #fff;
  padding: 96px 120px;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ── Post header ─────────────────────────────────────────────────────────── */

.insight-post-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 0 20px;
}

.insight-meta-date {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #1f8585;
  margin: 0;
}

.insight-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #0a2e2e;
  text-align: center;
  text-transform: capitalize;
  margin: 0;
}

.insight-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.insight-category-pill {
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  padding: 4px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #1f8585;
  white-space: nowrap;
}

.insight-featured-image {
  width: 100%;
  aspect-ratio: 1280 / 563;
  border-radius: 0 16px 0 16px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  overflow: hidden;
}

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

/* ── Divider ─────────────────────────────────────────────────────────────── */

.insight-divider {
  border: none;
  border-top: 1px solid #e2e8e8;
  margin: 0;
}

/* ── Two-column layout ───────────────────────────────────────────────────── */

.insight-body-layout {
  display: flex;
  gap: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 48px;
  align-items: flex-start;
}

.ys-page--insight-single .insight-post-header,
.ys-page--insight-single .insight-content-body,
.ys-page--insight-single .insight-share-block,
.ys-page--insight-single .insight-related {
  animation: ys-insight-single-fade-in 360ms ease-out both;
}

.ys-page--insight-single .insight-content-body {
  animation-delay: 80ms;
}

.ys-page--insight-single .insight-share-block {
  animation-delay: 120ms;
}

.ys-page--insight-single .insight-related {
  animation-delay: 160ms;
}

@keyframes ys-insight-single-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ── TOC sidebar ─────────────────────────────────────────────────────────── */

.insight-toc-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 138px;
  align-self: flex-start;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.insight-toc-trigger,
.insight-toc-backdrop,
.insight-toc-close {
  display: none;
}

.insight-toc-drawer {
  display: contents;
}

.insight-toc-drawer__header {
  display: none;
}

.insight-toc-drawer__label {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0a2e2e;
}

.insight-toc-inner {
  display: flex;
  gap: 19px;
  align-items: stretch;
}

.insight-toc-line {
  width: 3px;
  background: #d1d5db;
  border-radius: 2px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.insight-toc-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 24px;
  border-radius: inherit;
  background: #2bb5a0;
  transform: translateY(0);
  transition:
    transform 0.28s ease,
    height 0.28s ease,
    opacity 0.2s ease;
}

.insight-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.insight-toc-link {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #0a2e2e;
  text-decoration: none;
  opacity: 0.42;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.insight-toc-link.is-active {
  opacity: 1;
}

.insight-toc-link:focus-visible {
  opacity: 0.7;
}

@media (hover: hover) and (pointer: fine) {
  .insight-toc-link:hover {
    opacity: 0.7;
  }
}

/* ── Share buttons ───────────────────────────────────────────────────────── */

.insight-share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.insight-share-block {
  display: none;
}

.insight-share-block__label {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1f8585;
}

.insight-share-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #a0e8d8;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #1c9a91;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.insight-share-btn:hover,
.insight-share-btn:focus-visible {
  border-color: #1f8585;
  background: #1f8585;
  color: #fff;
}

.insight-share-btn svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}
/* 
.insight-share-btn--send svg {
  width: 18px;
  height: 18px;
  transform: rotate(-45deg);
} */

/* ── Article content body ────────────────────────────────────────────────── */

.insight-content-body {
  flex: 1;
  min-width: 0;
  display: block;
}

.insight-content-body h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #0a2e2e;
  margin: 48px 0 16px;
  scroll-margin-top: 150px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.insight-content-body p,
.insight-content-body li {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  color: #5c6e6e;
  margin: 0 0 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.insight-content-body ul,
.insight-content-body ol {
  padding-left: 24px;
  margin: 0 0 16px;
}

.insight-content-body a {
  color: #1a6b6b;
  text-decoration: underline;
}

.insight-content-body > * {
  margin-bottom: 0;
  margin-top: 0;
}

.insight-content-body > * + * {
  margin-top: 16px;
}

/* Gutenberg wraps headings in wp-block-heading divs */
.insight-content-body .wp-block-heading h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #0a2e2e;
  margin: 0;
}

.insight-content-body > h2:first-child,
.insight-content-body > h2.wp-block-heading:first-child,
.insight-content-body > .wp-block-heading:first-child h2 {
  margin-top: 0;
}

/* Tables inside content */
.insight-content-body table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e2e8e8;
  border-radius: 0 16px 0 16px;
  overflow: hidden;
}

.insight-content-body th {
  background: rgba(16, 185, 129, 0.25);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #0f3d3d;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 24px 16px;
  text-align: left;
}

.insight-content-body td {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #0f3d3d;
  padding: 24px 16px;
  border-top: 1px solid #e2e8e8;
}

.insight-content-body tr:nth-child(even) td {
  background: rgba(43, 181, 160, 0.08);
}

/* ── Related blog ────────────────────────────────────────────────────────── */

.insight-related {
  margin-top: 96px;
}

.insight-related__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.insight-related__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.insight-related__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.insight-related__eyebrow {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1f8585;
}

.insight-related__title {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  color: #0f172a;
}

.insight-related__button {
  min-height: 52px;
  padding: 15px 24px;
  background: #1c9a91;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.insight-related__button:hover,
.insight-related__button:focus-visible {
  background: #4fd4b8;
  box-shadow: 0 8px 24px 0 rgba(43, 181, 160, 0.3);
}

.insight-related__empty {
  margin: 0;
  padding: 40px 0 0;
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #0a2e2e;
}

.insight-related__viewport {
  overflow: hidden;
}

.insight-related__track {
  display: flex;
  justify-content: space-between;
}

.insight-related__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 368px;
  padding: 10px;
}

.insight-related__card:hover {
  border-radius: 8px;
  /* border: 10px solid #f1f5f9; */
  background: #f1f5f9;
}

.insight-related__card:hover
  .insight-related__card-content
  .insight-related__read-more
  .insight-related__arrow {
  transform: translateX(2px);
}

.insight-related__image-link {
  text-decoration: none;
}

.insight-related__image {
  aspect-ratio: 444 / 250;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 0 16px 0 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(28, 154, 145, 0.04));
}

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

.insight-related__image--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.insight-related__image--empty span {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  color: #0a2e2e;
}

.insight-related__card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-related__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.insight-related__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.2);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1c9a91;
}

.insight-related__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insight-related__card-title {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #0a2e2e;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.insight-related__card-title a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.insight-related__excerpt {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #5c6e6e;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.insight-related__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.5px;
  color: #1a6b6b;
  width: fit-content;
}

.insight-related__read-more img {
  width: 12px;
  height: 12px;
  display: block;
}

.insight-related__read-more:hover,
.insight-related__read-more:focus-visible,
.insight-related__card-title a:hover,
.insight-related__card-title a:focus-visible {
  color: #1f8585;
}

.insight-related__controls {
  display: none;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  body.insight-toc-drawer-open {
    overflow: hidden;
  }

  .insight-post-wrap {
    padding: 64px 40px;
  }

  .insight-title {
    font-size: 36px;
    line-height: 44px;
  }

  .insight-body-layout {
    flex-direction: column;
    gap: 0px;
  }

  .insight-toc-sidebar {
    width: 100%;
    position: static;
    z-index: 30;
    padding-top: 0;
    padding-bottom: 0;
    max-height: none;
    overflow: visible;
    gap: 0;
    background: transparent;
    align-items: flex-end;
  }

  .insight-toc-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 150px;
    right: 0;
    width: 64px;
    height: 64px;
    padding: 0;
    border: 0;
    border-radius: 16px 0 0 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 32px rgba(10, 46, 46, 0.14);
    backdrop-filter: blur(10px);
    margin-left: 0;
    z-index: 41;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
  }

  .insight-toc-trigger img {
    width: 28px;
    height: 28px;
    display: block;
  }

  .insight-toc-trigger[aria-expanded='true'] {
    background: #eef9f7;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .insight-toc-backdrop {
    position: fixed;
    inset: 0;
    z-index: 39;
    background: rgba(10, 46, 46, 0.42);
  }

  .insight-toc-backdrop.is-visible {
    display: block;
  }

  .insight-toc-drawer {
    display: block;
    position: fixed;
    top: 150px;
    right: 0;
    width: min(420px, calc(100vw - 32px));
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 120px);
    padding: 28px 24px 32px;
    background: #fff;
    border-radius: 24px 0 0 24px;
    box-shadow: -24px 0 48px rgba(10, 46, 46, 0.16);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 40;
    overflow-y: auto;
  }

  .insight-toc-drawer.is-open {
    transform: translateX(0);
  }

  .insight-toc-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
  }

  .insight-toc-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(160, 232, 216, 0.9);
    border-radius: 999px;
    background: #fff;
    color: #0a2e2e;
  }

  .insight-toc-close img {
    width: 18px;
    height: 18px;
    display: block;
  }

  .insight-toc-drawer .insight-toc-inner {
    min-height: calc(100% - 72px);
  }

  .insight-toc-link {
    font-size: 16px;
  }

  .insight-toc-sidebar > .insight-share-buttons {
    display: none;
  }

  .insight-share-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
  }

  .insight-content-body h2 {
    scroll-margin-top: 104px;
  }

  .insight-related {
    margin-top: 72px;
  }

  .insight-related__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }

  .insight-related__title {
    font-size: 36px;
    line-height: 44px;
  }

  .insight-related__button {
    align-self: flex-start;
  }

  .insight-related__track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
    will-change: transform;
  }

  .insight-related__card {
    flex: 0 0 100%;
  }

  .insight-related__controls {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
  }

  .insight-related__control {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8e8;
    border-radius: 22px;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    padding: 1px;
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease;
    width: 44px;
  }

  .insight-related__control:hover,
  .insight-related__control:focus-visible {
    background: #1f8585;
    border-color: #1f8585;
    color: #fff;
  }

  .insight-related__control[disabled] {
    cursor: default;
    opacity: 0.45;
  }

  .insight-related__control svg {
    display: block;
    height: 18px;
    width: 18px;
  }

  .insight-related__dots {
    align-items: center;
    display: flex;
    gap: 8px;
  }

  .insight-related__dot {
    background: #c5d0d0;
    height: 10px;
    border: 0;
    border-radius: 10px;
    padding: 0;
    width: 10px;
  }

  .insight-related__dot.is-active {
    background: #4fd4b8;
    width: 24px;
  }
}

@media (max-width: 768px) {
  .insight-post-wrap {
    padding: 48px 20px;
  }

  .insight-title {
    font-size: 28px;
    line-height: 36px;
  }

  .insight-body-layout {
    padding: 0;
  }

  .insight-share-block {
    margin-top: 32px;
    padding: 0;
  }

  .insight-related {
    margin-top: 64px;
  }

  .insight-related__inner {
    padding: 0;
  }

  .insight-related__title {
    font-size: 28px;
    line-height: 36px;
  }

  .insight-related__empty {
    font-size: 24px;
    line-height: 32px;
    padding-top: 24px;
  }

  .insight-related__card-content {
    padding-left: 0;
  }

  .insight-related__tags {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .insight-toc-trigger {
    top: 128px;
    right: 0;
  }

  .insight-toc-drawer {
    top: 128px;
    right: 0;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 148px);
    padding: 24px 20px 28px;
    border-radius: 20px 0 0 20px;
  }
}
