@charset "UTF-8";
@import 'nunito/stylesheet.css';
@import 'konkhmer/style.css';
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

:root {
  --site-header-height: 5.5rem;
}

body {
  font-family: "Albert Sans", sans-serif;
  color: #000000;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 62.5rem;
  background-color: #FFF;
  padding-top: var(--site-header-height);
}

/* Cabecera del sitio — barra fija (el overlay del menú va fuera de <header>) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  background: #fff;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
}

.header {
  flex-shrink: 0;
  position: static;
  width: 100%;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.header .logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.header .logo img {
  height: 30px;
  width: auto;
  max-width: 100%;
}

/* Intro animada del logotipo al cargar */
html.logo-intro-skipped #logoIntro {
  display: none;
}

html.logo-intro-pending body {
  overflow: hidden;
}
html.logo-intro-pending body .header .logo img {
  opacity: 0;
}

body.logo-intro-active {
  overflow: hidden;
}
body.logo-intro-active .header .logo img {
  opacity: 0;
}

.logo-intro {
  position: fixed;
  inset: 0;
  z-index: 100050;
  pointer-events: auto;
}
.logo-intro.logo-intro--done {
  pointer-events: none;
}

.logo-intro__backdrop {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 1;
  transition: opacity 0.65s ease;
}

.logo-intro--fading-backdrop .logo-intro__backdrop {
  opacity: 0;
}

.logo-intro__stage {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(85vw, 36rem);
  max-width: 85vw;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  z-index: 1;
  will-change: transform, left, top;
}

.logo-intro__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.logo-intro__letter {
  opacity: 0;
  transform: translateY(6px);
  transform-box: fill-box;
  transform-origin: center;
}

.logo-intro--revealing .logo-intro__letter {
  animation: logoIntroLetterIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.logo-intro--revealing .logo-intro__letter:nth-child(1) {
  animation-delay: 0s;
}
.logo-intro--revealing .logo-intro__letter:nth-child(2) {
  animation-delay: 0.12s;
}
.logo-intro--revealing .logo-intro__letter:nth-child(3) {
  animation-delay: 0.24s;
}
.logo-intro--revealing .logo-intro__letter:nth-child(4) {
  animation-delay: 0.36s;
}
.logo-intro--revealing .logo-intro__letter:nth-child(5) {
  animation-delay: 0.48s;
}
.logo-intro--revealing .logo-intro__letter:nth-child(6) {
  animation-delay: 0.6s;
}
.logo-intro--revealing .logo-intro__letter:nth-child(7) {
  animation-delay: 0.72s;
}
.logo-intro--revealing .logo-intro__letter:nth-child(8) {
  animation-delay: 0.84s;
}

@keyframes logoIntroLetterIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  #logoIntro {
    display: none !important;
  }
}
/* Navegación y menú (solo escritorio: en móvil el overlay usa columnas; ver media queries) */
@media (min-width: 992px) {
  .nav .nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
  }
}
/* .nav a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
} */
/* Selector de idioma (mismo patrón que nav-dropdown / Services) */
.header-lang {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-list--header-lang {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 991.98px) {
  :root {
    --site-header-height: 4.5rem;
  }
  html {
    height: 100%;
    overflow: hidden;
  }
  body {
    display: block;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    padding-top: 0;
    overscroll-behavior: none;
  }
  .site-scroll {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding-top: var(--site-header-height);
    box-sizing: border-box;
  }
  body.landing-parallax-page .site-scroll {
    display: block;
    min-height: 100%;
  }
  html.logo-intro-pending .site-scroll,
  body.logo-intro-active .site-scroll {
    overflow: hidden;
  }
  .site-header {
    top: 0;
    height: var(--site-header-height);
    padding: 0;
    pointer-events: none;
  }
  .site-header .header,
  .site-header .header > .container {
    height: 100%;
    box-sizing: border-box;
  }
  .site-header .header > .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1rem 1rem;
    padding-top: max(1rem, env(safe-area-inset-top, 0px));
    pointer-events: auto;
  }
  .site-header .nav.main-menu--overlay {
    z-index: 1;
  }
  .site-header .nav.main-menu--overlay:not(.is-open) {
    visibility: hidden;
    pointer-events: none;
  }
  .header-lang--desktop {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .site-scroll {
    display: contents;
  }
}
.main-menu {
  font-size: 0.75rem;
  color: #12355B;
}
.main-menu a {
  color: #12355B;
}
.main-menu .nav-list--overlay a,
.main-menu .nav-dropdown__trigger,
.main-menu .nav-dropdown__panel a {
  font-weight: 600;
  font-size: 0.75rem;
}

/* Submenú Services (ACCOUNTING / COMPANY SECRETARY) */
.nav-dropdown {
  position: relative;
  list-style: none;
}
.nav-dropdown.is-open {
  z-index: 2;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  line-height: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s ease;
}
.nav-dropdown__trigger:focus {
  outline: none;
}
.nav-dropdown__trigger:focus-visible {
  outline: 2px solid #bf6836;
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-dropdown__caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 0.15rem;
  line-height: 0;
  transition: transform 0.2s ease;
}
.nav-dropdown__caret img {
  display: block;
  width: auto;
  height: 0.65rem;
  max-height: 12px;
  object-fit: contain;
}

.nav-dropdown.is-open .nav-dropdown__caret {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-dropdown__panel[hidden] {
  display: none !important;
}
.nav-dropdown__panel a {
  display: block;
  padding: 0.55rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #12355B;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.nav-dropdown__panel a:hover, .nav-dropdown__panel a:focus-visible {
  color: #FF545F;
  outline: none;
}

/* Sección valores (About Element 8) */
.values-section {
  background: #fff;
  overflow: visible;
}

.values-section__inner {
  max-width: 1100px;
  overflow: visible;
}

.values-section__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
  margin: 0 0 0.75rem 0;
}

.values-section__lead {
  max-width: 56rem;
  margin: 0.25rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  overflow: visible;
}

.values-grid > [class*=col-] {
  overflow: visible;
}

.value-card__icon {
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  font-size: 0;
  transition: background-color 0.45s ease;
}
.value-card__icon svg.value-icon {
  display: block;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  overflow: visible;
}

.value-card__icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: visible;
}

[class*=value-card--] {
  position: relative;
  z-index: 0;
  overflow: visible;
}
[class*=value-card--] .value-card__icon {
  width: 11.25rem;
  height: 11.25rem;
  max-width: 100%;
  flex-shrink: 0;
  overflow: visible;
}
[class*=value-card--] .value-card__icon-inner {
  width: 8.75rem;
  height: 8.75rem;
}
[class*=value-card--] .value-card__icon svg.value-icon {
  width: 8.75rem;
  height: 8.75rem;
  overflow: visible;
}
[class*=value-card--]:hover {
  z-index: 2;
}
[class*=value-card--]:hover .value-card__icon {
  background-color: #efefef;
}

[class*=value-card--] .value-icon__head,
[class*=value-card--] .value-icon__body,
[class*=value-card--] .value-icon__star,
[class*=value-card--] .value-icon__person,
[class*=value-card--] .value-icon__arrows,
[class*=value-card--] .value-icon__board,
[class*=value-card--] .value-icon__check,
[class*=value-card--] .value-icon__bulb,
[class*=value-card--] .value-icon__rays,
[class*=value-card--] .value-icon__shield,
[class*=value-card--] .value-icon__hand,
[class*=value-card--] .value-icon__hands {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.value-card--user:hover .value-icon__head {
  transform: translateY(-4px);
}

.value-card--star:hover .value-icon__star {
  transform: rotate(12deg) scale(1.08);
}

.value-card--collaboration:hover .value-icon__person {
  transform: scale(1.08);
}
.value-card--collaboration:hover .value-icon__arrows {
  transform: rotate(10deg);
}

.value-card--complience:hover .value-icon__check {
  transform: scale(1.12);
}

.value-card--innovation:hover .value-icon__bulb {
  transform: scale(1.04);
}
.value-card--innovation:hover .value-icon__rays {
  transform: scale(1.08);
}

.value-card--shield:hover .value-icon__shield {
  transform: translateY(-4px);
}
.value-card--shield:hover .value-icon__check {
  transform: scale(1.12);
}

.value-card--hand:hover .value-icon__check {
  transform: translate(-4px, -6px) scale(1.05);
}

.value-card--handshake:hover .value-icon__hands {
  transform: scaleX(1.04);
}

@media (prefers-reduced-motion: reduce) {
  [class*=value-card--] .value-icon__head,
  [class*=value-card--] .value-icon__body,
  [class*=value-card--] .value-icon__star,
  [class*=value-card--] .value-icon__person,
  [class*=value-card--] .value-icon__arrows,
  [class*=value-card--] .value-icon__board,
  [class*=value-card--] .value-icon__check,
  [class*=value-card--] .value-icon__bulb,
  [class*=value-card--] .value-icon__rays,
  [class*=value-card--] .value-icon__shield,
  [class*=value-card--] .value-icon__hand,
  [class*=value-card--] .value-icon__hands {
    transition: none;
  }
  [class*=value-card--]:hover .value-icon__head,
  [class*=value-card--]:hover .value-icon__star,
  [class*=value-card--]:hover .value-icon__person,
  [class*=value-card--]:hover .value-icon__arrows,
  [class*=value-card--]:hover .value-icon__check,
  [class*=value-card--]:hover .value-icon__bulb,
  [class*=value-card--]:hover .value-icon__rays,
  [class*=value-card--]:hover .value-icon__shield,
  [class*=value-card--]:hover .value-icon__hand,
  [class*=value-card--]:hover .value-icon__hands {
    transform: none;
  }
}
.value-card__label {
  font-weight: 700;
  color: #12355B;
  font-size: 1.5rem;
  line-height: 2rem;
}

.value-card__label-about {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
}

.value-card__label-description {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
}

/* Sección: Our Hong Kong Business Guide */
.business-guide-section__inner {
  max-width: 1140px;
}

.business-guide-section__title {
  font-weight: 700;
  font-size: clamp(1.7rem, 2.8vw, 2rem);
  margin-bottom: 1.9rem;
}

.business-guide-section__lead {
  margin: 0 auto;
  max-width: 56rem;
  line-height: 1.65;
  font-size: 1rem;
  font-weight: 400;
}

.guide-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.guide-card-link .guide-card__media img {
  transition: transform 0.35s ease;
}
.guide-card-link:hover, .guide-card-link:focus-visible {
  color: inherit;
}
.guide-card-link:hover .guide-card__media img, .guide-card-link:focus-visible .guide-card__media img {
  transform: scale(1.05);
}
.guide-card-link:hover .guide-card-cta span::after, .guide-card-link:focus-visible .guide-card-cta span::after {
  transform: scaleX(1);
}
.guide-card-link:hover .guide-card-cta img, .guide-card-link:focus-visible .guide-card-cta img {
  transform: translateY(-50%) scaleX(1.2);
}

/* CTA en tarjetas guía (misma base que .hero-cta; clase propia para ajustes) */
.guide-card-cta {
  display: inline-block;
  color: #FF545F;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-top: 1rem;
  line-height: 1.2;
  position: relative;
  padding-right: 2.5rem;
  vertical-align: top;
}
.guide-card-cta span {
  position: relative;
  display: inline-block;
}
.guide-card-cta span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #FF545F;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}
.guide-card-cta img {
  position: absolute;
  right: 0;
  top: 50%;
  width: auto;
  height: 0.65rem;
  transform: translateY(-50%);
  transform-origin: left center;
  display: block;
  transition: transform 0.2s ease;
}

.guide-card {
  height: 100%;
}

.guide-card__media {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 25px;
  overflow: hidden;
}
.guide-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card__body {
  padding-top: 0.7rem;
}

.guide-card__date {
  margin-bottom: 0.5rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF545F;
}

.guide-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.guide-card__desc {
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0.85rem;
}

.guide-card__tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.guide-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: #D9D9D9;
  font-size: 0.58rem;
  text-transform: lowercase;
}

/* Menú hamburguesa (visible solo en viewport estrecho; ver media query) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 100;
}

.menu-toggle:focus {
  outline: 2px solid #2196F3;
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 1px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, background-color 0.35s ease;
}

.menu-toggle[aria-expanded=true] .hamburger-line {
  background-color: #12355B;
}

.menu-toggle[aria-expanded=true] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded=true] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded=true] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Main */
/* Hero (página home) */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.hero .row {
  align-items: center;
  width: 100%;
}

/* Columna de beans centrada verticalmente */
.hero .row > .col-lg-6:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-description {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-cta {
  display: inline-block;
  background: #FF545F;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 3rem;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  border-radius: 12px;
}

/* Imagen circular con acento naranja (sección Professional Services) */
.hero-media-circle {
  position: relative;
  /* idth: min(100%, 22rem); */
  margin: 0 auto;
  /* padding: 0 1.5rem 1.5rem 0; */
}
.hero-media-circle .trama1 {
  position: absolute;
  top: 0px;
  left: -85px;
  z-index: 9;
  display: block;
  /* @media (min-width: 1024px) {
      display: block;
  } */
}
.hero-media-circle .trama2 {
  position: absolute;
  bottom: 0px;
  right: -85px;
  z-index: 9;
  display: block;
  /* @media (min-width: 1024px) {
      display: block;
  } */
}

.hero-media-circle__accent {
  position: absolute;
  top: -12px;
  left: -4px;
  width: calc(100% - 1.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #FF545F;
  transform: translate(1.5rem, 1.5rem);
  z-index: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-media-circle__frame {
  position: relative;
  width: calc(100% - 1.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}
.hero-media-circle__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 991.98px) {
  .hero-media-circle {
    width: min(100%, 18rem);
    margin-top: 1.5rem;
    padding: 0 1.25rem 1.25rem 0;
  }
  .hero-media-circle__accent {
    width: calc(100% - 1.25rem);
    transform: translate(1.25rem, 1.25rem);
  }
  .hero-media-circle__frame {
    width: calc(100% - 1.25rem);
  }
}
.hero-media-circle:hover > .hero-media-circle__accent {
  transform: translate(2rem, 2rem);
}

.hero-media-circle:hover .hero-media-circle__frame img {
  transform: scale(1.06);
}

@media (max-width: 991.98px) {
  .hero-media-circle:hover > .hero-media-circle__accent {
    transform: translate(1.75rem, 1.75rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media-circle__accent,
  .hero-media-circle__frame img {
    transition: none;
  }
  .hero-media-circle:hover > .hero-media-circle__accent {
    transform: translate(1.5rem, 1.5rem);
  }
  .hero-media-circle:hover .hero-media-circle__frame img {
    transform: scale(1);
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .hero-media-circle:hover > .hero-media-circle__accent {
    transform: translate(1.25rem, 1.25rem);
  }
}
@media (max-width: 991px) {
  .hero {
    min-height: auto;
  }
  .hero-inner {
    padding-top: 2rem;
  }
}
/* Imagen circular con zoom al hover */
.founder-visual {
  position: relative;
  width: min(100%, 22rem);
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  min-height: 0;
}
.founder-visual::before {
  display: none;
}

.founder-visual__layer {
  position: absolute;
  top: 0;
  /* width: 65%; */
  transition: left 1.1s cubic-bezier(0.4, 0, 0.2, 1), right 1.1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.founder-visual__layer img {
  height: auto;
  display: block;
  vertical-align: top;
  max-width: 100%;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.founder-visual .founder-visual__layer {
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}
.founder-visual .founder-visual__layer img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.founder-visual:hover .founder-visual__layer img {
  transform: scale(1.06);
}

.founder-visual__bean {
  z-index: 4;
  /* left: 50%;
  transform: translateX(-50%); */
}

@media (prefers-reduced-motion: reduce) {
  .founder-visual__layer {
    transition: none;
  }
  .founder-visual__layer img {
    transition: none;
  }
  .founder-visual:hover .founder-visual__layer img {
    transform: scale(1);
  }
}
@media (max-width: 991px) {
  .founder-visual {
    width: min(100%, 18rem);
    max-width: none;
  }
}
/* Sección Who We Are / secciones genéricas */
.section-bg-fade {
  background: url("../img/bg-fade.png");
  background-position: top;
  background-repeat: repeat-x;
}

/*
 * Efecto cortina Parallax (Global para Home, About y Resource Detail)
 * El stage se fija con JS al final del scroll y el curtain sube por encima.
 */
.landing-parallax {
  position: relative;
  width: 100%;
  flex: 1 0 auto;
}
.landing-parallax .landing-parallax__spacer {
  position: relative;
  z-index: 1;
  background: transparent !important;
}
.landing-parallax .landing-parallax__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  background: transparent !important;
}
.landing-parallax .landing-parallax__stage.is-pinned {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}
.landing-parallax .landing-parallax__curtain {
  position: relative;
  z-index: 10;
  isolation: isolate;
  width: 100% !important;
  background-color: #12355B !important;
  box-shadow: 0 -1.25rem 3.5rem rgba(0, 0, 0, 0.22);
}
.landing-parallax .landing-parallax__curtain .cta-contact-section {
  position: relative;
  z-index: 1;
}
.landing-parallax .landing-parallax__curtain .footer {
  margin-top: 0;
}

/* Soporte para reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
  .landing-parallax .landing-parallax__stage.is-pinned {
    position: relative;
    top: auto !important;
  }
  .landing-parallax .landing-parallax__curtain {
    box-shadow: none;
  }
}
/* Company Secretary — secretarial support grid */
.secretarial-support__header {
  margin-bottom: 2.5rem;
}

.secretarial-support__subtitle {
  display: flex;
  /* align-items: center;
  justify-content: center; */
  gap: 1.25rem;
  width: 100%;
  margin: 0 0 3rem;
}

.secretarial-support__subtitle-text {
  flex-shrink: 0;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  text-align: center;
}

.secretarial-support__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

.secretarial-support__media {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: #e6e6e6;
  line-height: 0;
}
.secretarial-support__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1) rotate(0deg);
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.secretarial-support__item:hover .secretarial-support__media img {
  transform: scale(1.06) rotate(4deg);
}

.secretarial-support__body {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.secretarial-support__item-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.35;
  color: #000;
}

.secretarial-support__item-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #000;
}

@media (max-width: 991.98px) {
  .secretarial-support__item {
    flex-direction: column;
  }
  .secretarial-support__media {
    align-self: center;
  }
}
@media (max-width: 575.98px) {
  .secretarial-support__subtitle {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .secretarial-support__media {
    width: 160px;
    height: 160px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .secretarial-support__media img {
    transition: none;
  }
  .secretarial-support__item:hover .secretarial-support__media img {
    transform: none;
  }
}
.section-bg-callback {
  background: url("../img/bg-callback.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-bg-brand {
  background-color: #12355B;
}

.banner-section {
  border-radius: 25px;
  overflow: hidden;
}
.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cBco {
  color: #FFFFFF;
}

.pt6 {
  padding-top: 6rem;
}

.pb6 {
  padding-bottom: 6rem;
}

/* Our Expertise — SVG inline (flooring / doors): círculo + hover por capas */
.expertise-svg-wrap {
  display: inline-block;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  color: #663300;
  overflow: visible;
}
.expertise-svg-wrap .expertise-svg {
  display: block;
  width: 100%;
  max-width: 450px;
  height: auto;
  vertical-align: middle;
  overflow: visible;
}
.expertise-svg-wrap .expertise-plank {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.34, 1.45, 0.64, 1);
}
.expertise-svg-wrap .expertise-plank path {
  stroke: currentColor;
}
.expertise-svg-wrap:hover .expertise-plank--1 {
  transform: translate(2px, -4px);
}
.expertise-svg-wrap:hover .expertise-plank--2 {
  transform: translate(4px, -6px);
  transition-delay: 0.05s;
}
.expertise-svg-wrap:hover .expertise-plank--3 {
  transform: translate(5px, -7px);
  transition-delay: 0.1s;
}

.expertise-svg-wrap--doors {
  color: #603a16;
  /* Unidades obligatorias; -webkit- por Safari con <g> anidado en SVG */
}
.expertise-svg-wrap--doors .expertise-door-slide {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: transform 0.45s ease;
}
.expertise-svg-wrap--doors:hover .expertise-door-slide {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}

.expertise-svg-wrap--windows {
  color: #603a16;
  /* Batientes: 50 % en X; gozne izquierdo en hoja izq., gozne derecho en hoja der. */
}
.expertise-svg-wrap--windows .expertise-window-sash--left,
.expertise-svg-wrap--windows .expertise-window-sash--right {
  transform-box: fill-box;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  transition: transform 0.45s ease;
}
.expertise-svg-wrap--windows .expertise-window-sash--left {
  transform-origin: left center;
}
.expertise-svg-wrap--windows .expertise-window-sash--right {
  transform-origin: right center;
}
.expertise-svg-wrap--windows:hover .expertise-window-sash--left, .expertise-svg-wrap--windows:hover .expertise-window-sash--right {
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
}

.expertise-svg-wrap--lighting {
  color: #603a16;
  /* Repos: solo contorno; hover: relleno sólido (sin animación continua) */
}
.expertise-svg-wrap--lighting .expertise-lighting-glow {
  fill: currentColor;
  fill-opacity: 0;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linejoin: round;
  transition: fill-opacity 0.3s ease;
}
.expertise-svg-wrap--lighting:hover .expertise-lighting-glow {
  fill-opacity: 1;
}
.expertise-svg-wrap--lighting .expertise-lighting-wire {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linejoin: round;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.expertise-svg-wrap--lighting:hover .expertise-lighting-wire {
  fill: #ffffff;
  stroke: #ffffff;
}

.expertise-svg-wrap--furniture {
  color: #603813;
}
.expertise-svg-wrap--furniture .expertise-furniture-slide {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: transform 0.45s ease;
}
.expertise-svg-wrap--furniture:hover .expertise-furniture-slide {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}

.expertise-svg-wrap--decoration {
  color: #603a16;
}
.expertise-svg-wrap--decoration svg .expertise-decoration-foliage {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.expertise-svg-wrap--decoration:hover svg .expertise-decoration-foliage {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .expertise-svg-wrap:hover .expertise-plank {
    transform: none;
  }
  .expertise-svg-wrap--doors:hover .expertise-door-slide {
    -webkit-transform: none;
    transform: none;
  }
  .expertise-svg-wrap--windows:hover .expertise-window-sash--left,
  .expertise-svg-wrap--windows:hover .expertise-window-sash--right {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .expertise-svg-wrap--furniture:hover .expertise-furniture-slide {
    -webkit-transform: none;
    transform: none;
  }
  .expertise-svg-wrap--decoration svg .expertise-decoration-foliage {
    opacity: 1;
    transition: none;
  }
}
/* Sourciflex in Numbers */
.section-container {
  padding: 6rem 0rem;
}

@media (max-width: 991.98px) {
  .section-container {
    padding: 3.5rem 0;
  }
  .section-title {
    font-size: 1.65rem;
  }
  .section-subtitle2 {
    font-size: 1.5rem;
  }
  .section-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-description {
    font-size: 1.15rem;
  }
  .hero-description-2 {
    font-size: 1rem;
  }
  .hero-cta {
    padding: 0.75rem 2.5rem;
    width: 100%;
    max-width: 20rem;
    text-align: center;
  }
  .contact-section__frame {
    border-radius: 22px;
    padding: 3rem;
  }
  .contact-panel {
    border-radius: 18px;
    padding: 2rem 1.25rem;
  }
  .contact-panel__submit {
    width: 100%;
    max-width: 18rem;
  }
  .footer {
    padding: 3rem 0;
  }
}
@media (max-width: 575.98px) {
  .hero-inner {
    padding-bottom: 2.5rem;
  }
}
.section-subtitle {
  color: #404040;
  text-align: left;
  font-size: 1.5rem;
  line-height: 2.25;
  margin-bottom: 1.5rem;
}

.section-subtitle2 {
  font-family: "nunitosemibold_italic", sans-serif;
  text-align: left;
  font-size: 2rem;
  line-height: 1.5;
  margin-top: 0rem;
  margin-bottom: 2.7rem;
}

.section-title {
  text-align: left;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.section-title span {
  font-family: "nunitobold", sans-serif;
}

.section-description {
  text-align: left;
  font-size: 1rem;
  line-height: 1.8rem;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.process-steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  counter-reset: process-step;
}
.process-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  counter-increment: process-step;
}
.process-steps__item:last-child {
  margin-bottom: 0;
}
.process-steps__number {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #FF545F;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-steps__number::before {
  content: counter(process-step);
}
.process-steps__number.bgSec {
  background: #12355B;
}
.process-steps__body {
  flex: 1;
  min-width: 0;
  padding-top: 0.15rem;
}
.process-steps__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}
.process-steps__description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.section-link {
  color: #404040;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  padding-right: 2rem;
}
.section-link span {
  position: relative;
}
.section-link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.1s ease;
}
.section-link img {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
  margin-left: 0;
  display: block;
  transition: transform 0.1s ease 0.1s;
}
.section-link:hover span::after {
  width: 100%;
}
.section-link:hover img {
  transform: translateY(-50%) scaleX(1.2);
}

/* Solo visible en móvil (oculto en tablet/escritorio) */
.trampaMB {
  display: none;
}

@media (max-width: 575.98px) {
  .trampaMB {
    display: block;
    padding: 1rem 0;
  }
}
.tac {
  text-align: center;
}

.pl2 {
  padding-left: 2rem;
}

.pr2 {
  padding-right: 2rem;
}

.pt2 {
  padding-top: 2rem;
}

.pt3 {
  padding-top: 3rem;
}

.pt6 {
  padding-top: 6rem;
}

.fcg {
  color: #12355B;
}

.pr {
  position: relative;
}

.section-divider {
  height: 1px;
  opacity: 1;
  border: none;
  background-color: #12355B;
  width: 300%;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Case studies — filtro categoría (dropdown tipo lista con bordes) */
.category-dropdown {
  position: relative;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  z-index: 2;
}
.category-dropdown.is-open {
  z-index: 50;
}

.category-dropdown__box {
  position: relative;
  border: 1px solid #d9d9d9;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.category-dropdown__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  margin: 0;
  border: none;
  border-bottom: 1px solid transparent;
  background: #fff;
  color: #404040;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.category-dropdown__trigger:hover {
  background: #fafafa;
}
.category-dropdown__trigger:focus {
  outline: none;
}
.category-dropdown__trigger:focus-visible {
  outline: 2px solid #bf6836;
  outline-offset: 2px;
}

.category-dropdown.is-open .category-dropdown__trigger {
  border-bottom-color: #d9d9d9;
}

.category-dropdown__value {
  flex: 1;
  min-width: 0;
}

.category-dropdown__caret {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #404040;
  transition: transform 0.2s ease;
}

.category-dropdown.is-open .category-dropdown__caret {
  transform: rotate(180deg);
}

.category-dropdown__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1;
  max-height: 22rem;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.category-dropdown__panel[hidden] {
  display: none !important;
}

.category-dropdown__option {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  margin: 0;
  border: none;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}
.category-dropdown__option:last-child {
  border-bottom: none;
}
.category-dropdown__option:hover, .category-dropdown__option:focus-visible {
  background: #f5f5f5;
}
.category-dropdown__option:focus {
  outline: none;
}
.category-dropdown__option:focus-visible {
  outline: 2px solid #bf6836;
  outline-offset: -2px;
}

/* Resources — listado por categoría */
.resources-by-category {
  padding-top: 0;
}

.resources-grid__message {
  margin: 0;
  text-align: center;
}

.resources-category-block {
  margin-bottom: 4rem;
}
.resources-category-block:last-child {
  margin-bottom: 0;
}
.resources-category-block[hidden] {
  display: none !important;
}

.resources-category-block__header {
  margin-bottom: 2rem;
}

.resources-category-block__title {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.resources-category-block__rule {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0 0 1.25rem;
  border: none;
  background: #FF545F;
}

.resources-category-block__description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.resource-detail {
  padding: 2.5rem 0 4rem;
}

.resource-detail__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 3rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #A09E9E;
}

.resource-detail__breadcrumb-link {
  color: inherit;
  text-decoration: none;
}
.resource-detail__breadcrumb-link:hover {
  text-decoration: underline;
}

.resource-detail__breadcrumb-sep {
  color: #A09E9E;
}

.resource-detail__breadcrumb-current {
  color: #A09E9E;
}

.resource-detail__intro {
  max-width: none;
  margin-left: 2rem;
  text-align: left;
}

.resource-detail__hero {
  margin-bottom: 3rem;
}

.resource-detail__media {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .resource-detail__media {
    margin-bottom: 0;
  }
}
.resource-detail__media .resource-detail__image {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.resource-detail__date {
  margin: 0 0 1rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF545F;
}

.resource-detail__title {
  margin: 0 0 1.25rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #000;
}

.resource-detail__short {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: #000;
}
.resource-detail__short p:last-child {
  margin-bottom: 0;
}

.resource-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.resource-detail__content {
  font-size: 1rem;
  line-height: 1.75;
  color: #000;
}
.resource-detail__content p {
  margin-bottom: 1.25rem;
}
.resource-detail__content h2,
.resource-detail__content h3,
.resource-detail__content h4 {
  margin: 2rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.resource-detail__content ul,
.resource-detail__content ol {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}
.resource-detail__content li {
  margin-bottom: 0.5rem;
}
.resource-detail__content img {
  max-width: 100%;
  height: auto;
}

.resource-detail__gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
}

.resource-detail__figure {
  margin: 0;
}

.resource-detail__main_image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
  object-fit: cover;
}

.resource-detail__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 992px) {
  .resource-detail__intro {
    padding-left: 0.5rem;
  }
}
/* Resources — filtro categoría minimal (texto + chevron, sin caja) */
.resources-filter-section {
  padding: 0 0 2rem;
  margin-top: -0.5rem;
}

.category-dropdown--minimal {
  position: relative;
  width: auto;
  max-width: 100%;
  font-family: inherit;
}
.category-dropdown--minimal .category-dropdown__box {
  border: none;
  background: transparent;
  box-shadow: none;
}
.category-dropdown--minimal .category-dropdown__trigger {
  width: auto;
  min-width: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  justify-content: flex-start;
  gap: 0.4rem;
}
.category-dropdown--minimal .category-dropdown__trigger:hover, .category-dropdown--minimal .category-dropdown__trigger:focus {
  background: transparent;
}
.category-dropdown--minimal.is-open .category-dropdown__trigger {
  border-bottom: none;
}
.category-dropdown--minimal .category-dropdown__value {
  flex: 0 1 auto;
}
.category-dropdown--minimal .category-dropdown__caret {
  flex-shrink: 0;
  width: auto;
  height: auto;
  border: none;
  display: inline-flex;
  align-items: center;
  margin-top: 0.15rem;
}
.category-dropdown--minimal .category-dropdown__caret img {
  display: block;
  width: 14px;
  height: 14px;
}
.category-dropdown--minimal.is-open .category-dropdown__caret img {
  transform: rotate(180deg);
}
.category-dropdown--minimal .category-dropdown__panel {
  margin-top: 0.65rem;
  min-width: min(100%, 18rem);
  border-top: 1px solid #d9d9d9;
}
.category-dropdown--minimal .category-dropdown__option {
  font-size: 0.875rem;
  padding: 0.85rem 1rem;
}

/* Core Accounting Services — grid 2x2 con icono circular */
.core-services__header {
  margin-bottom: 3rem;
}

.core-services__title {
  margin: 0 0 1rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: #000;
}

.core-services__lead {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: #404040;
}

.core-services__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  position: relative;
  z-index: 0;
  overflow: visible;
}
.core-services__item:hover {
  z-index: 1;
}

.core-services__grid > [class*=col-] {
  overflow: visible;
}

.core-services__icon.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  width: 200px;
  height: 200px;
  overflow: visible;
  line-height: 0;
  font-size: 0;
  transition: background-color 0.45s ease;
}
.core-services__icon.value-card__icon .core-services__icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  flex: 0 0 auto;
  overflow: visible;
}
.core-services__icon.value-card__icon svg.service-icon {
  display: block;
  width: 140px;
  height: 140px;
  max-width: none;
  max-height: none;
  margin: 0;
  flex: 0 0 auto;
  overflow: visible;
}
.core-services__icon.value-card__icon [class*=service-icon__] {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.core-services__item:hover .core-services__icon.value-card__icon {
  background-color: #efefef;
}

.core-services__item--bookkeeping:hover .service-icon__calc {
  transform: scale(1.1);
}

.core-services__item--annual_statements:hover .service-icon__check {
  transform: scale(1.14);
}

.core-services__item--tax_filing:hover .service-icon__check--1 {
  transform: scale(1.1);
  transition-delay: 0s;
}
.core-services__item--tax_filing:hover .service-icon__check--2 {
  transform: scale(1.1);
  transition-delay: 0.06s;
}
.core-services__item--tax_filing:hover .service-icon__check--3 {
  transform: scale(1.1);
  transition-delay: 0.12s;
}

.core-services__item--management_reporting:hover .service-icon__clip {
  transform: translateY(-4px);
}

.core-services__item--audit_coordination:hover .service-icon__glass {
  transform: scale(1.06) rotate(-8deg);
}

.core-services__item--cloud_accounting_migration:hover .service-icon__cloud {
  transform: translateY(-4px);
}
.core-services__item--cloud_accounting_migration:hover .service-icon__calc {
  transform: scale(1.08);
}
.core-services__item--cloud_accounting_migration:hover .service-icon__arrows {
  transform: rotate(10deg);
}

.core-services__item--cs_statutory_records:hover .service-icon__board {
  transform: rotate(-5deg);
}
.core-services__item--cs_statutory_records:hover .service-icon__pen {
  transform: scale(1.1);
}

.core-services__item--cs_annual_return:hover .service-icon__bubble {
  transform: scale(1.06);
}

.core-services__item--cs_registered_office:hover .service-icon__check {
  transform: scale(1.14);
}

.core-services__item--cs_corporate_changes:hover .service-icon__doc {
  transform: rotate(-5deg);
}
.core-services__item--cs_corporate_changes:hover .service-icon__pen {
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .core-services__icon.value-card__icon [class*=service-icon__] {
    transition: none;
  }
  [class*=core-services__item--]:hover [class*=service-icon__] {
    transform: none;
  }
}
.core-services__body {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.core-services__item-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  color: #000;
}

.core-services__item-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #000;
}

@media (max-width: 991.98px) {
  .core-services__item {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
  }
  .core-services__body {
    width: 100%;
    text-align: center;
  }
  .core-services__item-description {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .core-services__icon.value-card__icon {
    flex-shrink: 0;
    align-self: center;
    width: 11.25rem;
    height: 11.25rem;
    max-width: min(100%, 11.25rem);
  }
  .core-services__icon.value-card__icon .core-services__icon-inner {
    width: 7.5rem;
    height: 7.5rem;
  }
  .core-services__icon.value-card__icon svg {
    width: 7.5rem;
    height: 7.5rem;
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .core-services__icon.value-card__icon {
    width: 9.5rem;
    height: 9.5rem;
  }
  .core-services__icon.value-card__icon .core-services__icon-inner {
    width: 6.5rem;
    height: 6.5rem;
  }
  .core-services__icon.value-card__icon svg {
    width: 6.5rem;
    height: 6.5rem;
  }
  .core-services__item-title {
    font-size: 1.25rem;
  }
}
/* Not Sure Where to Begin — banner 50/50 */
.not-sure-banner {
  width: 100%;
  overflow: hidden;
}

.not-sure-banner__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 22rem;
}

.not-sure-banner__media {
  min-height: 18rem;
  overflow: hidden;
}
.not-sure-banner__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.not-sure-banner__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  background: #FF545F url("../img/bg-not-sure.jpg") no-repeat right center;
  background-size: cover;
  color: #fff;
}

.not-sure-banner__inner {
  position: relative;
  z-index: 1;
}

.not-sure-banner__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.not-sure-banner__description {
  margin: 0 0 2rem;
  font-size: clamp(0.95rem, 1.6vw, 1rem);
  line-height: 1.65;
  font-weight: 400;
  color: #fff;
}

.not-sure-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.not-sure-banner__btn:hover {
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .not-sure-banner__grid {
    grid-template-columns: 1fr;
  }
  .not-sure-banner__media {
    min-height: 16rem;
    max-height: 20rem;
  }
  .not-sure-banner__content {
    padding: 3rem 1.5rem 6rem;
  }
  .not-sure-banner__inner {
    max-width: none;
    text-align: center;
  }
}
/* Call to Contact (CTA) */
.cta-contact-section {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 1.5rem;
}

.cta-contact-section__deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 0;
}
.cta-contact-section__deco img {
  display: block;
  width: auto;
  height: auto;
  max-height: min(280px, 70vh);
  object-fit: contain;
}
.cta-contact-section__deco--left {
  left: 0;
}
.cta-contact-section__deco--right {
  right: 0;
}

.cta-contact-block {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
}

.cta-contact-section__title {
  margin: 0 0 2rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.cta-contact-section__description {
  margin: 0 auto 3rem;
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

/* Contact page — paisaje HK + panel azul semitransparente */
.contact-section__frame {
  background: url("../img/HK-landscape-contact.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 25px;
  overflow: hidden;
  padding: 3rem;
  margin-bottom: 3rem;
}

.contact-panel {
  background: rgba(18, 53, 91, 0.9);
  border-radius: 25px;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  color: #fff;
}

.contact-panel__alert {
  margin-bottom: 1.5rem;
}

.contact-panel__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}

.contact-panel__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #fff;
}

.contact-panel__info {
  margin-top: 2rem;
}

.contact-panel__info .contact-info-item {
  color: #fff;
  margin-bottom: 1rem;
}

.contact-panel__info .contact-info-item a {
  color: #fff;
  text-decoration: none;
}

.contact-panel__info .contact-info-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-panel__info .contact-info-icon {
  color: #fff;
}

.contact-info-item--social {
  margin-top: 0.25rem;
}

.contact-info-item--social a {
  display: inline-flex;
  align-items: center;
}

.contact-panel__submit {
  margin-top: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0.85rem 2.5rem;
}

.contact-form-underline--light .contact-field-label {
  color: #fff;
  text-transform: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 0.35rem;
}

.contact-form-underline--light .contact-field-input {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.85);
  caret-color: #fff;
}

.contact-form-underline--light .contact-field-input:focus {
  border-bottom-color: #fff;
}

.contact-form-underline--light .contact-field-textarea {
  min-height: 72px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  color: #404040;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.contact-info-item a {
  color: #404040;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: #12355B;
  text-decoration: underline;
}

.contact-info-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-top: 0.2em;
  color: #404040;
}

.contact-info-icon svg {
  display: block;
}

/* Formulario con solo subrayado */
.contact-form-underline .contact-field {
  margin-bottom: 1.5rem;
}

.contact-form-underline .contact-field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-form-underline .contact-field-input {
  display: block;
  width: 100%;
  padding: 0.4rem;
  font-size: 1rem;
  color: #FFFFFF;
  background: transparent;
  border: none;
  border-bottom: 1px solid #FFFFFF;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form-underline .contact-field-input::placeholder {
  color: #FFFFFF;
}

.contact-form-underline .contact-field-input:focus {
  border-bottom-color: #FFFFFF;
}

.contact-form-underline .contact-field-textarea {
  resize: vertical;
  min-height: 80px;
}

/* Footer */
.footer {
  flex-shrink: 0;
  background: #000000;
  color: #fff;
  padding: 5rem 0rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  padding-bottom: 2rem;
}

.footer-top .row {
  align-items: flex-start;
}

/* Logo en la primera columna */
.footer-top .row > .col-md-6:first-child .logo {
  display: inline-block;
}

.footer-top .row > .col-md-6:first-child .logo img {
  height: 24px;
  width: auto;
}

/* Enlaces de navegación del footer */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
}

.footer-nav-col--menu {
  display: flex;
  justify-content: flex-end;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer-nav-col--menu .footer-nav {
  justify-content: flex-start;
}

.footer-follow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3.65rem;
}

.footer-follow__label {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-weight: 600;
}

.footer-follow__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-follow__social svg {
  display: block;
  width: 20px;
  height: 20px;
}
.footer-follow__social:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.footer-nav-col a,
.footer-nav .footer-contact-title {
  font-size: 1rem;
  color: #FFFFFF;
  text-decoration: none;
  margin-bottom: 0;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.footer-nav a.footer-contact-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.4s ease;
}

.footer-nav a.footer-contact-title:hover::after {
  width: 100%;
}

.footer-contact-title {
  font-size: 1rem;
  color: #FFFFFF;
  text-decoration: none;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.footer-contact-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.4s ease;
}
.footer-contact-title:hover::after {
  width: 100%;
}

.footer-bottom {
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #FFFFFF;
}

.footer-bottom a {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/*
 * Móvil / tablet: menú tipo overlay pantalla completa (referencia estilo portfolio / uxestrella.com)
 * — overlay fijo, fade + ligero movimiento vertical, enlaces grandes centrados, animación escalonada
 */
/* Sass interpreta max() como función propia; el valor se guarda en string e interpola a CSS crudo */
@media (max-width: 991.98px) {
  .header-inner {
    position: static;
  }
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1;
  }
  /*
   * Overlay: altura = viewport completo; flex centra el bloque .menu-overlay__inner
   * en vertical y horizontal (evita el bug flex+scroll en el mismo nodo).
   */
  .nav.main-menu--overlay {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    margin-top: 0;
    box-sizing: border-box;
    width: 100vw;
    max-width: none;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    min-height: -webkit-fill-available;
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    margin: 0;
    padding: max(1rem, env(safe-area-inset-top, 0px)) max(1.5rem, env(safe-area-inset-right, 0px)) max(1rem, env(safe-area-inset-bottom, 0px)) max(1.5rem, env(safe-area-inset-left, 0px));
    flex: none;
    order: 0;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: center !important;
    overflow: hidden;
    overscroll-behavior: none;
    background: #FFFFFF;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s;
  }
  .nav.main-menu--overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .menu-overlay__inner {
    flex: 0 1 auto;
    align-self: center;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
    max-height: calc(100dvh - 2.5rem);
    max-height: calc(100svh - 2.5rem);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav .nav-list.nav-list--overlay {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 0.15rem;
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center;
  }
  .nav .nav-list.nav-list--overlay > li {
    width: 100%;
    max-width: 100%;
    list-style: none;
    opacity: 0;
    transform: translateY(1.1rem);
    transition: opacity 0.45s cubic-bezier(0.33, 1, 0.68, 1), transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .nav.main-menu--overlay.is-open .nav-list--overlay > li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav.main-menu--overlay.is-open .nav-list--overlay > li:nth-child(1) {
    transition-delay: 0.08s;
  }
  .nav.main-menu--overlay.is-open .nav-list--overlay > li:nth-child(2) {
    transition-delay: 0.16s;
  }
  .nav.main-menu--overlay.is-open .nav-list--overlay > li:nth-child(3) {
    transition-delay: 0.24s;
  }
  .nav.main-menu--overlay.is-open .nav-list--overlay > li:nth-child(4) {
    transition-delay: 0.32s;
  }
  .nav.main-menu--overlay.is-open .nav-list--overlay > li:nth-child(5) {
    transition-delay: 0.4s;
  }
  .nav.main-menu--overlay.is-open .nav-list--overlay > li:nth-child(6) {
    transition-delay: 0.48s;
  }
  .nav.main-menu--overlay.is-open .nav-list--overlay > li:nth-child(7) {
    transition-delay: 0.56s;
  }
  .nav.main-menu--overlay.is-open .nav-list--overlay > li:nth-child(8) {
    transition-delay: 0.64s;
  }
  /* Móvil: sin desplegable Services; enlaces de servicios al mismo nivel */
  .nav-services--desktop {
    display: none !important;
  }
  .nav-services-link--mobile {
    display: list-item;
  }
  .nav-lang-link--mobile {
    display: list-item;
    margin-top: 0.5rem;
  }
  .nav .nav-list.nav-list--overlay > li.nav-lang-link--mobile > a {
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }
  .nav .nav-list.nav-list--overlay > li > a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
    font-family: "Albert Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: #12355B;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
  }
  .nav .nav-list.nav-list--overlay > li > a:hover,
  .nav .nav-list.nav-list--overlay > li > a:focus-visible {
    color: #12355B;
    transform: scale(1.02);
    background-color: rgba(18, 53, 91, 0.06);
    outline: none;
  }
  html.nav-open,
  body.nav-open {
    overflow: hidden !important;
    overscroll-behavior: none;
    height: 100%;
    touch-action: none;
  }
  body.nav-open .menu-toggle .hamburger-line {
    background-color: #12355B;
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .nav.main-menu--overlay {
    transition: opacity 0.2s ease;
  }
  .nav .nav-list.nav-list--overlay > li {
    transition: opacity 0.2s ease;
    transform: none;
  }
  .nav.main-menu--overlay.is-open .nav-list--overlay > li {
    transition-delay: 0s !important;
  }
  .hamburger-line {
    transition: opacity 0.2s ease, background-color 0.2s ease;
  }
}
/* Escritorio: menú horizontal a la derecha (.site-header agrupa logo, nav e idioma) */
@media (min-width: 992px) {
  .site-header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
  }
  .header {
    flex: 1 1 auto;
    min-width: 0;
  }
  .site-header > .header > .container {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
  }
  .header-inner {
    flex-wrap: nowrap;
  }
  .menu-toggle {
    display: none !important;
  }
  .nav {
    position: static;
    flex: 0 0 auto;
    order: 0;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow: visible !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  .nav.main-menu--overlay {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    inset: auto !important;
  }
  .menu-overlay__inner {
    display: contents;
    max-height: none !important;
    overflow: visible !important;
  }
  .nav .nav-list {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    min-height: 2.75rem;
  }
  .nav .nav-list li {
    display: flex;
    align-items: center;
  }
  .nav .nav-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.5rem 0.85rem;
    text-decoration: none;
  }
  /* Clases overlay solo en móvil: en escritorio enlaces estándar */
  .nav-list--overlay li {
    opacity: 1;
    transform: none;
    width: auto;
  }
  .nav-list--overlay a,
  .nav-dropdown__trigger {
    position: relative;
    text-decoration: none;
    transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-list--overlay a::after,
  .nav-dropdown__trigger::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.35rem;
    height: 2px;
    background: #FF545F;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-list--overlay a {
    font-family: "Inter", sans-serif;
    letter-spacing: normal;
    padding: 0.5rem 0.85rem;
    color: #12355B;
    transform: none;
    background: transparent;
  }
  .nav-list--overlay a:hover,
  .nav-list--overlay a:focus-visible,
  .nav-dropdown__trigger:hover,
  .nav-dropdown__trigger:focus-visible {
    color: #FF545F;
    transform: none;
    background: transparent;
  }
  .nav-list--overlay a:hover::after,
  .nav-list--overlay a:focus-visible::after,
  .nav-dropdown__trigger:hover::after,
  .nav-dropdown__trigger:focus-visible::after {
    transform: scaleX(1);
  }
  .nav-services-link--mobile {
    display: none !important;
  }
  .nav-lang-link--mobile {
    display: none !important;
  }
  .nav-services--desktop {
    display: list-item;
  }
  .nav-dropdown.is-open {
    z-index: 1070;
  }
  .nav-dropdown__trigger {
    min-height: 2.75rem;
    padding: 0.5rem 0.85rem;
    color: #12355B;
  }
  .nav-dropdown.is-open .nav-dropdown__trigger {
    color: #FF545F;
  }
  .nav-dropdown.is-open .nav-dropdown__trigger::after {
    transform: scaleX(1);
  }
  .nav-dropdown__panel {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 46%;
    transform: translateX(-50%);
    min-width: 4.5rem;
    background: #fff;
  }
  .nav-dropdown__panel a {
    position: relative;
    transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-dropdown__panel a::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.4rem;
    height: 2px;
    background: #FF545F;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-dropdown__panel a:hover,
  .nav-dropdown__panel a:focus-visible {
    color: #FF545F;
  }
  .nav-dropdown__panel a:hover::after,
  .nav-dropdown__panel a:focus-visible::after {
    transform: scaleX(1);
  }
  .site-header .header-lang {
    margin-left: 0.25rem;
  }
  .header-lang .nav-dropdown__trigger {
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: normal;
  }
}
@media (min-width: 992px) and (prefers-reduced-motion: reduce) {
  .nav-list--overlay a,
  .nav-dropdown__trigger,
  .nav-dropdown__panel a {
    transition: color 0.2s ease;
  }
  .nav-list--overlay a::after,
  .nav-dropdown__trigger::after,
  .nav-dropdown__panel a::after {
    transition: none;
  }
  .nav-list--overlay a:hover::after, .nav-list--overlay a:focus-visible::after,
  .nav-dropdown__trigger:hover::after,
  .nav-dropdown__trigger:focus-visible::after,
  .nav-dropdown__panel a:hover::after,
  .nav-dropdown__panel a:focus-visible::after {
    transform: scaleX(1);
  }
}
@media (max-width: 640px) {
  .footer-nav-col--menu {
    justify-content: flex-start;
  }
  .footer-menu {
    align-items: flex-start;
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: left;
  }
}

/*# sourceMappingURL=main.css.map */
