/* @font-face declarations moved to assets/css/root.css (loaded first on every page) */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Cal Sans", sans-serif;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ════════════════════════════
   TOKENS
════════════════════════════ */
/* Base :root design tokens moved to assets/css/root.css (loaded first on every page) */

/* ════════════════════════════
   BASE
════════════════════════════ */
body {
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 3px;
}

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
.saya-navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-lg);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    backdrop-filter 0.3s ease;
}

.saya-navbar--scrolled {
  /* background: rgba(10, 10, 10, .88); */
  backdrop-filter: blur(12px);
  /* border-bottom: 1px solid rgba(255, 255, 255, .06); */
}

.saya-navbar--hidden {
  transform: translateY(-100%);
}

.saya-navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 20%;
  min-width: 80px;
  max-width: 180px;
}

.saya-navbar__nav {
  background: var(--nav-bg);
  border-radius: var(--pill);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0;
}

.saya-navbar__link {
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--black);
  padding: 7px 20px;
  border-radius: var(--pill);
  transition: background var(--ease), color var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.saya-navbar__link:hover,
.saya-navbar__link--active {
  color: var(--nav-text);
}

.saya-navbar__spacer {
  width: 10%;
  min-width: 80px;
  max-width: 140px;
}

.saya-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: var(--r-sm);
  cursor: pointer;
  gap: 5px;
  padding: 0;
  transition: border-color var(--ease);
  z-index: 110;
  flex-shrink: 0;
}

.saya-hamburger:hover {
  border-color: var(--green);
}

.saya-hamburger__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

.saya-hamburger--open .saya-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.saya-hamburger--open .saya-hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.saya-hamburger--open .saya-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.saya-mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, .97);
  backdrop-filter: blur(16px);
  z-index: 99;
  padding: var(--sp-md) var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}

.saya-mobile-menu--open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.saya-mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.saya-mobile-menu__link {
  display: block;
  font-size: var(--fs-base);
  font-weight: 200;
  color: var(--white);
  padding: 12px var(--sp-sm);
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}

.saya-mobile-menu__link:hover,
.saya-mobile-menu__link--active {
  background: var(--nav-bg);
  color: var(--nav-text);
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.saya-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

.saya-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* filter: brightness(.55) saturate(.8); */
  z-index: 0;
  transform-origin: center top;
}

.saya-hero__overlay {
  position: absolute;
  inset: 0;
  /* background: radial-gradient(ellipse 60% 80% at 50% 50%, transparent 30%, rgba(0, 0, 0, .65) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, .35) 0%, transparent 40%, rgba(0, 0, 0, .55) 100%); */
  z-index: 1;
}

/* ════════════════════════════
   ABOUT
════════════════════════════ */
.saya-about {
  position: relative;
  padding: var(--sp-3xl) var(--sp-xl);
  background: var(--black);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .saya-about .container-fluid {
    /* max-width: 90rem; */
    max-width: 80rem;
  }

  /* .saya-about__word{
    font-size: 52px!important;
  } */
}

@media (min-width: 1616px) {
  .saya-about__word {
    font-size: 52px !important;
  }
}

.saya-about__corner {
  position: absolute;
  top: -6%;
  left: -1%;
  width: 10%;
  max-width: 20%;
  pointer-events: none;
}

.saya-about__corner2 {
  position: absolute;
  bottom: -9%;
  right: -2%;
  width: 14%;
  height: auto;
  z-index: 1;
  transform: rotate(352deg);
}

.saya-about .text-main {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 2vw;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-between;
}

.saya-about__welcome {
  font-size: clamp(30px, 2vw, 20px);
  font-weight: 200;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.saya-about__logo {
  width: 100%;
}

.saya-about__logo img {
  width: 95%;
  height: auto;
}

@media (max-width: 1300px) {
  .saya-about__logo img {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .saya-about__logo img {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .saya-about__logo img {
    width: 50%;
  }

  .saya-about {
    padding: 120px 30px;
  }

  .saya-about__logo {
    width: 100%;
    /* padding-left: calc(var(--bs-gutter-x) * .5); */
    /* padding-right: calc(var(--bs-gutter-x) * .5); */
  }

  .saya-about__welcome {
    /* padding-left: calc(var(--bs-gutter-x) * .5); */
    /* padding-right: calc(var(--bs-gutter-x) * .5); */
  }

  .saya-about__corner {
    top: -3%;
    left: 0%;
    width: 28%;
    max-width: 120px;
  }

  .saya-about__corner2 {
    bottom: -5%;
    right: -3%;
    width: 50%;
    max-width: 200px;
  }

}

.saya-about__label {
  font-size: clamp(28px, 1.7vw, 20px);
  font-weight: 500;
  color: rgba(255, 255, 255);
  letter-spacing: 1px;
  margin-bottom: 0px;
  line-height: 1;
}

.saya-about__words {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.saya-about__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.saya-about__word {
  font-size: var(--fs-2xl);
  font-weight: normal;
  line-height: 1;
  letter-spacing: -1px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.saya-about__word--1,
.saya-about__word--2,
.saya-about__word--3,
.saya-about__word--4 {
  background-image: linear-gradient(90deg, #D2F670 0%, #193AD3 100%);
}

@media (max-width: 1430px) and (min-width: 1100px) {
  .saya-about__word {
    font-size: clamp(36px, 3.6vw, 60px);
    ;
  }
}

/* ════════════════════════════
   HORIZONTAL SLIDER
════════════════════════════ */
.saya-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  background: #1B1B1E;
}

.saya-slider .saya-slider-left {
  position: absolute;
  bottom: -56%;
  left: -36%;
  width: 63%;
  height: auto;
  opacity: 0.1;
}

.saya-slider .container-large {
  height: 88vh;
  padding-left: 20px;
  padding-right: 20px;
}

.saya-slider__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  width: max-content;
  will-change: transform;
  background: var(--green);
  z-index: 2;
  position: relative;
}

.saya-slider__box {
  flex-shrink: 0;
  width: 38vw;
  height: 74vh;
  overflow: hidden;
  position: relative;
}

.saya-slider__box--wide {
  flex-shrink: 0;
  width: 59vw;
  height: 74vh;
  overflow: hidden;
  position: relative;
}

.saya-slider__box img,
.saya-slider__box--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
}

.saya-slider__box--wide:hover img {
  transform: scale(1.06);
}

@media (max-width: 1024px) {
  .saya-slider .container-large {
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .saya-slider {
    height: auto;
    overflow: visible;
    display: block;
  }

  .saya-slider__track {
    transform: none !important;
    gap: 12px;
    padding: 14px;
  }

  .saya-slider__box {
    width: 55vw;
    height: 72vw;
    scroll-snap-align: start;
  }

  .saya-slider__box--wide {
    width: 72vw;
    height: 48vw;
    scroll-snap-align: start;
  }
}

@media (max-width: 992px) {

  .saya-about__label,
  .saya-about__words {
    line-height: 1.3;
    display: flex;
    flex-wrap: nowrap;
  }
}

@media (max-width: 768px) {
  .saya-slider__track {
    gap: 10px;
    padding: 12px;
  }

  .saya-slider__box {
    width: 70vw;
    height: 95vw;
    scroll-snap-align: start;
  }

  .saya-slider__box--wide {
    width: 85vw;
    height: 52vw;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .saya-slider__box {
    width: 78vw;
    height: 104vw;
  }

  .saya-slider__box--wide {
    width: 92vw;
    height: 58vw;
  }
}

/* ════════════════════════════
   SAYA-TAG
════════════════════════════ */
.saya-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 999px;
  background: linear-gradient(#1B1B1E, #1B1B1E) padding-box,
    linear-gradient(to right, #161618 0%, #161618 0%, #acdb55 25%, #acdb55 100%) border-box;
  cursor: pointer;
  transition: width .45s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease;
  border-image-slice: 1;
}

.saya-tag:hover,
.saya-slider__box:hover .saya-tag {
  width: var(--saya-tag-w, 200px);
}

.saya-tag__arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
}

.saya-tag__arrow svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  transition: transform .3s ease;
}

.saya-tag:hover .saya-tag__arrow svg,
.saya-slider__box:hover .saya-tag__arrow svg {
  transform: translateX(2px);
}

.saya-tag__label {
  order: 1;
  white-space: nowrap;
  font-family: "HelveticaL";
  font-size: 16px;
  font-weight: 200;
  color: var(--white);
  padding-left: 18px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .25s ease .15s, transform .3s ease .1s;
}

.saya-tag:hover .saya-tag__label,
.saya-slider__box:hover .saya-tag__label {
  opacity: 1;
  transform: translateX(0);
}

.saya-tag-bottom {
  position: absolute;
  bottom: 10px;
  left: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #D8D5C7;
  font-size: 28px;
}

/* ════════════════════════════
   SCROLL HINT
════════════════════════════ */
.saya-scroll-hint {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  padding: 6px 16px 0;
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .5px;
  pointer-events: none;
  transition: opacity .4s ease;
}

.saya-scroll-hint svg {
  animation: saya-hint-bounce 1.4s ease-in-out infinite;
}

@keyframes saya-hint-bounce {

  0%,
  100% {
    transform: translateX(0);
    opacity: .4;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

/* ════════════════════════════
   SCROLL WRAP
════════════════════════════ */
.saya-slider__scroll-wrap,
.saya-countries__scroll-wrap,
.saya-awards__scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100%;
  height: 100%;
}

.saya-slider__scroll-wrap::-webkit-scrollbar,
.saya-countries__scroll-wrap::-webkit-scrollbar,
.saya-awards__scroll-wrap::-webkit-scrollbar {
  display: none;
}

/* ════════════════════════════
   WHAT WE DO
════════════════════════════ */
.saya-wwd {
  position: relative;
  width: 100%;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  overflow: hidden;
  padding: 20px 20px 20px;
  padding-top: 74px;
  min-height: 100vh;
  /* border-bottom: 1px solid #393f4a91; */
  /* border-top: 1px solid #393f4a91; */
  /* margin-bottom: 20px; */
}

.saya-wwd__title {
  position: relative;
  z-index: 5;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: normal;
  color: var(--green);
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Cal Sans", sans-serif;
}

.btw-wwd-slide {
  position: absolute;
  width: 63%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
  top: -40%;
  left: -31%;
}

.btw-wwd-slide2 {
  position: absolute;
  width: 55%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
  bottom: -8%;
  right: -14%;
}

.saya-wwd__scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.saya-wwd__stack-wrap {
  position: relative;
  z-index: 5;
}

.saya-wwd__stack {
  position: relative;
  width: min(1380px, 90vw);
  /* aspect-ratio: 3/2; */
}

.saya-wwd__stack-wrap--left {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3;
  font-size: 2vw;
  color: white;
}

/* 
.saya-wwd__stack-wrap--left .saya-wwd__stack {
  width: min(300px, 22vw);
  opacity: 0.68;
} */

.saya-wwd__stack-wrap--right {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3;
  font-size: 2vw;
  color: white;
}


.saya-wwd__stack-wrap--left .saya-wwd__card,
.saya-wwd__stack-wrap--right .saya-wwd__card {
  background-image: linear-gradient(90deg, #D2F670 0%, #193AD3 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 50px;
}

.left-text,
.right-text {
  background-image: linear-gradient(90deg, #D2F670 0%, #193AD3 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 50px;
}

/* .saya-wwd__stack-wrap--right .saya-wwd__stack {
  width: min(300px, 22vw);
  opacity: 0.68;
} */

.saya-wwd__card {
  position: absolute;
  inset: 0;
  /* overflow: auto hidden; */
  will-change: transform, filter, opacity;
  transform-origin: top center;
  transition: all 0.4s ease;
  transform: scale(0.82) translateY(30%);
  /* height: 368px; */
  height: 27vw;
  z-index: 0;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 1600px) {
  .saya-wwd__card {
    height: 400px;
  }
}

#saya-wwd-stack .saya-wwd__card2.middle {
  border: 16px solid;
  /* border-image-source: linear-gradient(90deg, #B1E055 -1.96%, #9DCC62 7.34%, #689982 53.47%, #1548B6 86.07%, #0337C1 101.95%); */
  border-image-slice: 1;
  width: 50%;
  height: 100%;
  position: relative;
}

/* Type 1 — odd cards (1st, 3rd, 5th…) */
#saya-wwd-stack .saya-wwd__card:nth-child(odd) .saya-wwd__card2.middle {
  border-image-source: linear-gradient(90deg, #ACDB55 -1.96%, #D2F670 7.34%, #689982 53.47%, #1548B6 86.07%, #0337C1 101.95%);
}

/* Type 2 — even cards (2nd, 4th, 6th…) — reversed */
#saya-wwd-stack .saya-wwd__card:nth-child(even) .saya-wwd__card2.middle {
  border-image-source: linear-gradient(90deg,
      #0337C1 -1.96%, #1548B6 7.34%, #689982 53.47%, #D2F670 86.07%, #ACDB55 101.95%);
}

.left-text {
  position: absolute;
  top: 0;
  left: -2%;
  width: 27%;
}

.right-text {
  position: absolute;
  top: 0;
  right: -2.4%;
  width: 27%;
  text-align: left;
}

.saya-wwd__card .left-text,
.saya-wwd__card .right-text {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s linear;
  text-align: center;
}

.saya-wwd__card2.middle {
  flex: 0 0 auto;
  width: 40%;
}

.saya-wwd__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}

.saya-wwd__card--l1 {
  z-index: 5;
  transform: scale(1) translateY(30%);
  filter: brightness(1);
}

.saya-wwd__card--l2 {
  z-index: 4;
  transform: scale(0.94) translateY(20%);
  filter: brightness(0.75);
}

.saya-wwd__card--l3 {
  z-index: 3;
  transform: scale(0.88) translateY(10%);
  filter: brightness(0.55);
}

.saya-wwd__card--l4 {
  z-index: 2;
  transform: scale(0.82) translateY(12%);
  filter: brightness(0.4);
}

/* OUT class now on the STACK container */
.saya-wwd__stack.out .saya-wwd__card--l1 {
  animation: slideOut 0.6s linear 0.5s forwards;
}

@keyframes slideOut {
  0% {
    transform: scale(1) translateY(30%);
    opacity: 1;
  }

  100% {
    transform: scale(1.5) translateY(100%);
    opacity: 0;
  }
}

.saya-wwd__stack.out .saya-wwd__card--l4 {
  animation: slideOut2 0.6s linear forwards;
}

@keyframes slideOut2 {
  0% {
    transform: scale(0.82) translateY(12%);
  }

  50% {
    transform: scale(0.82) translateY(0%);
  }

  100% {
    transform: scale(0.88) translateY(10%);
  }
}

.saya-wwd__stack.out .saya-wwd__card--l3 {
  animation: slideOut3 0.6s linear 0.2s forwards;
}

@keyframes slideOut3 {
  0% {
    transform: scale(0.88) translateY(10%);
  }

  100% {
    transform: scale(0.94) translateY(20%);
  }
}

.saya-wwd__stack.out .saya-wwd__card--l2 {
  animation: slideOut4 0.6s linear 0.35s forwards;
}

@keyframes slideOut4 {
  0% {
    transform: scale(0.94) translateY(20%);
  }

  100% {
    transform: scale(1) translateY(30%);
  }
}

@media (max-width: 1400px) {
  #saya-wwd-stack .saya-wwd__card2.middle {
    border: 14px solid;
    border-image-slice: 1;
    width: 50%;
    height: 100%;
    position: relative;
  }
}

@media (max-width: 1100px) {
  #saya-wwd-stack .saya-wwd__card2.middle {
    border: 8px solid;
    border-image-slice: 1;
    width: 50%;
    height: 100%;
    position: relative;
  }
}

@media(max-width:1024px) {

  .saya-wwd__stack-wrap--left,
  .saya-wwd__stack-wrap--right {
    display: none;
  }

  .saya-wwd__stack {
    width: min(725px, 92vw);
  }

  /* .saya-wwd__card .left-text, .saya-wwd__card .right-text {
    display: none;
  } */
  .saya-wwd__card {
    height: 280px;
  }

  .saya-wwd {
    align-items: center;
    justify-content: center;
  }

  .saya-wwd__scene {
    height: 100%;
    justify-content: center;
    align-items: start;
  }
}

@media(max-width:768px) {
   .saya-wwd__stack {
    width: min(600px, 92vw);
  }

  .saya-wwd {
    padding: 60px 16px 80px;
  }

  .btw-wwd-slide {
    position: absolute;
    width: 75%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
    top: -12%;
    left: -40%;
  }

  .saya-wwd__card .left-text,
  .saya-wwd__card .right-text {
    display: none !important;
  }

  #saya-wwd-stack .saya-wwd__card2.middle {
    width: 78%;
  }

  .saya-wwd__card {
    height: 200px;
  }

}
.saya-wwd__mobile-label {
  display: none;
}

@media (max-width: 768px) {
  .saya-wwd__mobile-label {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    z-index: 30;
    text-align: center;
    pointer-events: none;
  }

  .saya-wwd__mobile-label span {
    display: inline-block;
    font-size: 30px;
    font-weight: normal;
    line-height: 1;
    background-image: linear-gradient(90deg, #D2F670 0%, #193AD3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: opacity .2s ease;
  }
}
/* ════════════════════════════
   COUNTRIES
════════════════════════════ */
.saya-countries {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1a2ecc;
}

.saya-countries__bg {
  position: absolute;
  background-image: url('../images/Group-1.png');
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .18;
  pointer-events: none;
  z-index: 0;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
}

.saya-countries__label {
  position: relative;
  z-index: 2;
  font-size: clamp(16px, 4vw, 30px);
  font-weight: 200;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .5px;
  margin-bottom: var(--sp-md);
  text-align: center;
  padding: 0 var(--sp-md);
  /* top: 12%; */
}

.saya-countries__track {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 80px;
  padding: 0 80px;
  width: max-content;
  will-change: transform;
}

.saya-countries__name {
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: normal;
  color: rgba(255, 255, 255, .92);
  white-space: nowrap;
  letter-spacing: -1px;
  cursor: default;
  transition: color var(--ease), transform var(--ease);
}

.saya-countries__name:hover {
  color: var(--green);
  transform: scale(1.05);
}

/* ════════════════════════════
   BRANDS
════════════════════════════ */
.saya-brands {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--sp-xl) var(--sp-xl);
  gap: 0;
}

.saya-brands__blob {
  position: absolute;
  width: 56%;
  height: auto;
  top: 52%;
  left: 45%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

.saya-brands__left {
  position: relative;
  z-index: 2;
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 40px;
}

.saya-brands__heading {
  font-size: 5.2vw;
  font-weight: normal;
  line-height: 4.5rem;
  color: var(--green);
  letter-spacing: -1.5px;
  margin-bottom: 0;
}

@media(min-width: 1520px) {
  .saya-brands__heading {
    font-size: 4.9rem;
  }
}

@media(max-width: 768px) {
  .saya-brands__heading {
    font-size: 28px;
    line-height: 2rem;
    letter-spacing: -0.5px;
  }

  .saya-brands__left {
    gap: 8px;
  }

}

.saya-brands__heading--green {
  color: var(--green);
}

.saya-brands__desc {
  font-size: clamp(12px, 1.5vw, 16px);
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  max-width: 100%;
  /* text-align: justify; */
  font-family: HelveticaL, sans-serif;
}

.saya-brands__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}

.saya-brands__logo-text {
  font-size: clamp(11px, .9vw, 14px);
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  white-space: nowrap;
  letter-spacing: .3px;
  transition: color var(--ease);
  cursor: default;
}

.saya-brands__logo-text--bold {
  font-weight: normal;
}

.saya-brands__logo-text:hover {
  color: var(--green);
}

.saya-brands__logo-text+.saya-brands__logo-text::before {
  content: '·';
  margin-right: 20px;
  color: rgba(255, 255, 255, .2);
}

.saya-brands__right {
  z-index: 2;
  flex: 0 0 50%;
  padding-right: var(--sp-lg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 70px;
  height: 100%;
}

.saya-brands__phone-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.saya-brands__phone-column--2 {
  margin-top: 60px;
}

.saya-brands__phone-wrap {
  flex-shrink: 0;
}

.saya-brands__phone {
  position: relative;
  width: 256px;
  height: 500px;
  overflow: hidden;
}

.saya-brands__phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.saya-brands__screen-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 5;
  pointer-events: none;
}

.saya-brands__screen-fade--top {
  top: 0;
  background: linear-gradient(to bottom, #1c1c28 0%, transparent 100%);
}

.saya-brands__screen-fade--bottom {
  bottom: 0;
  background: linear-gradient(to top, #1c1c28 0%, transparent 100%);
}

.saya-brands .saya-frame {
  width: 90%;
  height: 96%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.saya-brands__phone-screen .saya-frame img,
.saya-brands__phone-screen .saya-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

/* ════════════════════════════
   AWARDS
════════════════════════════ */
.saya-awards {
  position: relative;
  width: 100%;
  min-height: 89vh;
  /* background: linear-gradient(110deg, #ACDB55 40%, #4060ff 80%, #1a1aee 100%); */
  background-color: #c8e890;
  background-image:
    radial-gradient(ellipse at 0% 0%, #cffc5b 0%, #cffc5b 30%, transparent 55%),
    radial-gradient(ellipse at 0% 50%, #cffc5b 0%, #c2e870 25%, transparent 62%),
    radial-gradient(ellipse at 50% 0%, #c2e870 0%, #d4f090 30%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, #ffffff 0%, #f8fff0 20%, transparent 40%),
    radial-gradient(ellipse at 100% 100%, #1a1aee 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, #b8e890 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.saya-awards__ticker {
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
}

.saya-awards__ticker-inner {
  display: flex;
  gap: 52px;
  width: max-content;
  animation: saya-tick 16s linear infinite;
}

.saya-awards__ticker-inner--rev {
  animation-direction: reverse;
}

@keyframes saya-tick {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-15%);
  }
}

.saya-awards__ticker span {
  font-size: var(--fs-sm);
  font-weight: normal;
  color: #111;
  white-space: nowrap;
  letter-spacing: 1px;
}

.saya-awards__track {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  padding: 0px 20px;
  width: max-content;
  will-change: transform;
  height: 100%;
}

.saya-awards__card {
  position: relative;
  flex-shrink: 0;
  width: var(--saya-card-w, 420px);
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease;
}

.saya-awards__card:hover {
  transform: scale(1.012);
}

.saya-awards__card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.saya-awards__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .52) 0%, transparent 35%, transparent 55%, rgba(0, 0, 0, .72) 100%);
}

.saya-awards__card-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.saya-awards__card-title {
  font-size: clamp(16px, 2vw, 28px);
  font-weight: normal;
  color: #D8D5C7;
  line-height: 1.2;
  letter-spacing: -.3px;
  max-width: 400px;
}

.saya-awards__card-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.saya-awards__card-brand {
  width: 12%;
}

.saya-awards__card-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.saya-awards__card-btn {
  width: 46px;
  height: 46px;
  /* border-radius: 30%; */
  color: #ADDC55;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  flex-shrink: 0;
  border: 2px solid transparent;
  /* background: linear-gradient(#373737, #000) padding-box,
    linear-gradient(to right, #0337C1 0%, #143690 0%, #1c20f0 25%, #ACDB55 100%) border-box; */
  background: linear-gradient(#111, #111) padding-box,
    linear-gradient(to right, #1B1B1E 0%, #1B1B1E 0%, #acdb55 25%, #acdb55 100%) border-box;
  border-image-slice: 1;
  border-radius: 999px;
}

.saya-awards__card-btn:hover {
  color: #ADDC55;
  transform: scale(1.1);
}

/* ════════════════════════════
   SHOWREEL
════════════════════════════ */
.saya-showreel {
  position: relative;
  width: 100%;
  background: var(--black);
  padding: var(--sp-lg) var(--sp-xl);
}

.saya-showreel__frame {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 420px;
  overflow: hidden;
  border: 4px solid;
  border-image-source: linear-gradient(90deg, #0337C1 -1.96%, #1548B6 7.34%, #689982 53.47%, #9DCC62 86.07%, #B1E055 101.95%);
  border-image-slice: 1;
}

.saya-showreel__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  transition: transform .6s ease;
}

.saya-showreel__frame:hover .saya-showreel__bg {
  transform: scale(1.03);
}

.saya-showreel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .45);
}

.saya-showreel__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
}

.saya-showreel__title {
  font-size: var(--fs-2xl);
  font-weight: normal;
  color: var(--green);
  letter-spacing: -1px;
  text-align: center;
  padding: 0 var(--sp-md);
}

.saya-showreel__play {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease, transform .25s ease, border-color .25s ease;
  padding-left: 4px;
}

.saya-showreel__play:hover {
  transform: scale(1.12);
}

.saya-showreel__play:active {
  transform: scale(.96);
}

@media (max-width: 768px) {
  .saya-showreel__title {
    font-size: 28px;
  }
  .saya-showreel__content{
    gap: 5px;
  }
}

/* ════════════════════════════
   MODAL
════════════════════════════ */
.saya-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.saya-modal--open {
  opacity: 1;
  pointer-events: all;
}

.saya-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  cursor: pointer;
}

.saya-modal__box {
  position: relative;
  z-index: 2;
  width: 90vw;
  max-width: 1000px;
  overflow: hidden;
  background: #1B1B1E;
  box-shadow: 0 0 0 3px #1a1aee, 0 0 0 5px var(--green-bright), 0 24px 80px rgba(0, 0, 0, .8);
  transform: scale(.92);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.saya-modal--open .saya-modal__box {
  transform: scale(1);
}

.saya-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .7);
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.saya-modal__close:hover {
  background: rgba(255, 0, 0, .6);
  border-color: transparent;
}

.saya-modal__video-wrap {
  position: relative;
  width: 100%;
  /* padding-top: 56.25%; */
}

.saya-modal__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ════════════════════════════
   NEWS
════════════════════════════ */
.saya-news {
  position: relative;
  width: 100%;
  padding: 20px 20px 20px;
}

.saya-news .saya-container {
  background: var(--green);
  padding: 20px;
  width: 100%;
}

.saya-news__title {
  font-size: var(--fs-xl);
  font-weight: normal;
  color: #111;
  text-align: center;
  margin-bottom: var(--sp-md);
  letter-spacing: -1px;
}

.saya-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

.saya-news__card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  transition: transform .3s ease;
}

.saya-news__card:hover {
  transform: translateY(-6px);
}

.saya-news__card-img {
  position: relative;
  width: 100%;
  height: 420px;
}

@media (max-width: 1400px) {
  .saya-news__card-img {
    height: 380px;
  }
}

.saya-news__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.saya-news__card:hover .saya-news__card-img img {
  transform: scale(1.06);
}

.saya-news__card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .85) 100%);
}

.saya-news__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.saya-news__card-text {
  font-size: clamp(12px, 1.18vw, 15px);
  font-weight: 400;
  color: #D8D5C7;
  line-height: 1.5;
  margin-bottom: 0;
  font-family: HelveticaL;
}

.saya-news__card-date {
  font-size: clamp(12px, 1.5vw, 17px);
  font-weight: normal;
  color: #D8D5C7;
}

/* ════════════════════════════
   CTA
════════════════════════════ */
.saya-cta {
  position: relative;
  width: 100%;
  /* min-height: 420px; */
  background: #0630d9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: var(--sp-2xl) var(--sp-lg); */
}

.saya-cta__deco {
  position: absolute;
  pointer-events: none;
  opacity: .9;
}

.saya-cta__deco img {
  width: 100%;
  height: auto;
}

.saya-cta__deco--tl {
  top: 0;
  left: -0.8%;
  width: 12%;
}

.saya-cta__deco--br {
  bottom: -4%;
  right: -2%;
  width: 13%;
  transform: rotate(170deg);
}

.saya-cta__eye {
  position: absolute;
  pointer-events: none;
  opacity: 1;
  width: 100px;
}

.saya-cta__eye img {
  display: block;
  pointer-events: none;
  user-select: none;
  width: 100%;
  height: auto;
}

.saya-cta__center {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
}

.saya-cta__logo-eyes {
  display: flex;
  gap: 6px;
  align-items: center;
}

.saya-cta__eye-ball {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(90deg, #DFF0A2 0%, #D4F675 16.91%, #CFF961 26.42%, #CDFA5A 33.85%, #CCFB55 44.58%);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  will-change: transform;
  transition: box-shadow .25s ease;
}

.saya-cta__eye-ball--glow {
  box-shadow: 0 0 24px rgba(184, 255, 71, .55);
}

.saya-cta__pupil {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  will-change: transform;
  transform-origin: center center;
}

.saya-cta__heading {
  font-size: clamp(14px, 3vw, 48px);
  font-weight: normal;
  color: #fff;
  text-align: center;
}

.saya-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: var(--fs-md);
  padding: 5px 10px;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease, gap .25s ease;
  border: 2px solid transparent;
  background: linear-gradient(#111, #111) padding-box,
    linear-gradient(to right, #1B1B1E 0%, #1B1B1E 0%, #acdb55 25%, #acdb55 100%) border-box;
  border-image-slice: 1;
  font-family: HelveticaL;
  width: 42%;
  justify-content: center;
  position: relative;
}


.saya-proceed_arrow {
  width: 16px;
  height: auto;
  position: absolute;
  right: 6%;
}

.saya-cta__btn img {
  width: 100%;
  height: auto;
}

.saya-cta__btn:hover {
  transform: scale(1.05);
  gap: 14px;
  color: #fff;
}

@media (max-width: 1200px) {
  .saya-cta__btn {
    width: 86%;
    padding: 4px 8px;
    font-size: 16px;
    border-radius: 14px;
  }

  .saya-cta__center {
    gap: 14px;
    width: 100%;
  }

  .saya-cta__eye-ball {
    width: 60px;
    height: 60px;
  }

  .saya-cta__pupil {
    width: 20px;
    height: 20px;
  }


}

@media (max-width: 1024px) {
  .saya-cta {
    min-height: 180px;
  }

  .saya-cta__btn {
    width: 86%;
    padding: 4px 8px;
    font-size: 14px;
  }

  .saya-proceed_arrow {
    width: 10px;
    right: 10%;
  }
}
@media (max-width: 992px) {
  .saya-cta__btn {
    width: 140px;
  }

}



/* ════════════════════════════
   FOOTER
════════════════════════════ */
.saya-footer {
  position: relative;
  width: 100%;
  /* background: #0e1117; */
  overflow: hidden;
  padding: var(--sp-xl) var(--sp-xl) var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 2000px;
}

.saya-footer__bg-shape {
  position: absolute;
  left: -140px;
  top: -15%;
  width: 680px;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  /* mix-blend-mode: soft-light; */
}

.saya-footer__bg-shape2 {
  position: absolute;
  right: -23%;
  bottom: 0%;
  width: 612px;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

.saya-footer__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-lg);
  padding-bottom: 38px;
}

.saya-footer__left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  flex: 0 0 auto;
  max-width: 100%;
  width: 50%;
}

.saya-footer__address-block,
.saya-footer__social-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.saya-footer__country {
  font-size: 22px;
  font-weight: normal;
  color: var(--green);
  letter-spacing: .3px;
  margin-bottom: 0;
}

.saya-footer__address {
  font-size: 16px;
  color: #F0F1F1;
  line-height: 1.6;
  max-width: 100%;
  font-family: HelveticaL;
}

.saya-footer__social-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: HelveticaL;
}

.saya-footer__social-link {
  font-size: var(--fs-md);
  color: #F0F1F1;
  transition: color var(--ease);
}

.saya-footer__social-link:hover {
  color: var(--green);
}

.saya-footer__right {
  display: flex;
  gap: 80px;
  flex-shrink: 0;
  margin-left: auto;
}

.saya-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.saya-footer__nav-heading {
  font-size: 22px;
  font-weight: normal;
  color: var(--green);
  margin-bottom: 4px;
}

.saya-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding-left: 0;
}

.saya-footer__nav-list a {
  font-size: var(--fs-base);
  color: #F0F1F1;
  transition: color var(--ease);
  font-family: HelveticaL;
}

.saya-footer__nav-list a:hover {
  color: #fff;
}

.saya-footer__nav-link--green {
  color: var(--green) !important;
}

.saya-footer__nav-link--green:hover {
  opacity: .8;
}

.saya-footer__logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 8px;
}

.saya-footer__logo {
  max-width: 520px;
  width: 40%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1) sepia(.05);
}

.saya-footer__logo-fallback {
  display: none;
}

.saya-footer__countries {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 7px;
}

.saya-footer__country-item {
  font-size: clamp(13px, 1.3vw, 18px);
  font-weight: normal;
  letter-spacing: .2px;
}

.saya-footer__country-item:hover {
  color: #4a7aff;
}

.saya-footer__country-item--green {
  color: var(--green);
}

.saya-footer__country-item--blue {
  color: #4a7aff;
}

.saya-footer__country-dot {
  color: rgba(255, 255, 255, .4);
  font-size: var(--fs-base);
}

.saya-footer__bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 12px;
}

.saya-footer__copy {
  font-size: var(--fs-xs);
  color: #F0F1F1;
  letter-spacing: .3px;
  margin-bottom: 0;
  font-family: HelveticaL, sans-serif;
}

/* ════════════════════════════
   TABLET ≤ 1024px
════════════════════════════ */
@media (max-width: 1024px) {
  .saya-navbar {
    padding: 0 var(--sp-md);
  }

  .saya-navbar__link {
    font-size: var(--fs-sm);
    padding: 6px 14px;
  }

  .saya-navbar__logo {
    min-width: 70px;
  }

  .saya-navbar__spacer {
    display: none;
  }

  .saya-about {
    padding: 120px 30px;
  }

  .saya-slider {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 0;
    display: block;
    background: var(--black);
  }

  .saya-slider__track {
    flex-wrap: nowrap;
    padding: 16px;
    gap: 14px;
    background: var(--green);
    transform: none !important;
  }

  .saya-slider__box,
  .saya-slider__box--wide {
    width: 60vw;
    height: 42vw;
    min-height: 220px;
    max-height: 420px;
    border-radius: var(--r-md);
    scroll-snap-align: start;
  }

  /* .saya-scroll-hint {
    display: flex;
  } */

  .saya-countries {
    height: auto;
    /* min-height: 0; */
    overflow: visible;
    padding: 140px 0;
  }

  .saya-countries__track {
    gap: 48px;
    padding: 0 24px;
    transform: none !important;
  }

  .saya-countries__name {
    font-size: clamp(40px, 7vw, 72px);
    scroll-snap-align: start;
  }

  .saya-brands {
    flex-direction: column;
    padding: var(--sp-xl) var(--sp-md);
    align-items: flex-start;
    min-height: auto;
  }

  .saya-brands__left {
    flex: none;
    width: 100%;
    padding-right: 0;
  }

  .saya-brands__desc {
    max-width: 100%;
  }

  .saya-brands__right {
    flex: none;
    width: 100%;
    height: 480px;
    padding: 0;
    margin-top: var(--sp-lg);
    justify-content: center;
    gap: 16px;
  }

  .saya-brands__phone {
    width: 155px;
    height: 326px;
  }

  .saya-brands__phone-column--2 {
    margin-top: 48px;
  }

  .saya-awards {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .saya-awards__card {
    flex-shrink: 0;
    /* width: 56vw !important;
    height: 100%; */
    scroll-snap-align: start;
    width: 56vw;
    height: 42vw;
    min-height: 220px;
    max-height: 420px;
  }

  .saya-awards__card-title {
    font-size: clamp(16px, 2.5vw, 24px);
  }

  .saya-showreel {
    padding: var(--sp-md);
  }

  .saya-showreel__frame {
    height: 55vw;
    min-height: 320px;
  }

  .saya-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .saya-news__card-img {
    height: 300px;
  }

  .saya-footer {
    padding: var(--sp-xl) var(--sp-md) var(--sp-md);
  }

  .saya-footer__top {
    flex-wrap: wrap;
    gap: var(--sp-lg);
  }

  .saya-footer__left {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .saya-footer__right {
    margin-left: 0;
    gap: var(--sp-xl);
  }

  .saya-footer__logo {
    width: 52%;
  }
}

@media (max-width: 1024px) {
  :root {
    --navbar-h: 60px;
    --sp-3xl: 72px;
    --sp-2xl: 52px;
    --sp-xl: 44px;
    --sp-lg: 28px;
  }

  .saya-navbar {
    padding: 0 var(--sp-sm);
  }

  .saya-navbar__nav {
    display: none;
  }

  .saya-hamburger {
    display: flex;
  }

  .saya-mobile-menu {
    display: block;
  }

  .saya-navbar__logo {
    min-width: 64px;
    max-width: 100px;
  }

  .saya-hero {
    min-height: 360px;
    height: 92vw;
  }
}

/* ════════════════════════════
   MOBILE ≤ 768px
════════════════════════════ */
@media (max-width: 768px) {
  /* 
  .saya-navbar {
    padding: 0 var(--sp-sm);
  }

  .saya-navbar__nav {
    display: none;
  }

  .saya-hamburger {
    display: flex;
  }

  .saya-mobile-menu {
    display: block;
  }

  .saya-navbar__logo {
    min-width: 64px;
    max-width: 100px;
  } */

  .saya-hero {
    min-height: 360px;
    height: 92vw;
  }

  .saya-about {
    padding: 120px 30px;
  }

  .saya-slider {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 0;
    display: block;
  }

  .saya-slider__track {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 14px;
  }

  .saya-slider__box,
  .saya-slider__box--wide {
    width: 80vw;
    height: 56vw;
    min-height: 180px;
    max-height: 300px;
    scroll-snap-align: start;
  }

  .saya-countries {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 100px 0;
  }

  .saya-countries__track {
    gap: 32px;
    padding: 0 16px;
  }

  .saya-countries__name {
    font-size: clamp(32px, 10vw, 56px);
    scroll-snap-align: start;
  }

  .saya-brands {
    flex-direction: column;
    padding: var(--sp-xl) var(--sp-sm);
    min-height: auto;
    align-items: stretch;
  }

  .saya-brands__left {
    flex: none;
    width: 100%;
    padding-right: 0;
  }

  .saya-brands__desc {
    max-width: 100%;
  }

  .saya-brands__right {
    flex: none;
    width: 100%;
    height: 380px;
    padding: 0;
    margin-top: var(--sp-md);
    justify-content: center;
    gap: 12px;
    overflow: hidden;
  }

  .saya-brands__phone-column {
    flex-shrink: 0;
    overflow: hidden;
    width: 100%;

  }

  .saya-brands__phone {
    width: 140px;
    height: 285px;
  }

  .saya-brands__phone-column--2 {
    margin-top: 36px;
  }

  .saya-awards {
    min-height: 0;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .saya-awards__card {
    flex-shrink: 0;
    width: 76vw !important;
    height: 100%;
    min-height: 280px;
    scroll-snap-align: start;
  }

  .saya-awards__card>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .saya-awards__card-btn {
    width: 42px;
    height: 38px;
  }

  .saya-awards__scroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100%;
    height: 344px;
    height: 100%;
  }

  .saya-awards__scroll-wrap::-webkit-scrollbar {
    display: none;
  }

  .saya-showreel {
    padding: 14px var(--sp-sm);
  }

  .saya-showreel__frame {
    height: 56vw;
    min-height: 220px;
  }

  .saya-showreel__play {
    width: 46px;
    height: 46px;
  }

  .saya-news {
    padding: var(--sp-xl) var(--sp-sm);
  }

  .saya-news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .saya-news__card {
    min-height: 280px;
  }

  .saya-news__card-img {
    height: 52vw;
    min-height: 160px;
  }

  .saya-news__card-body {
    padding: 12px;
    gap: 6px;
  }

  .saya-news__card-text {
    font-size: 11px;
  }

  .saya-news__card-date {
    font-size: 11px;
  }



  /* .saya-cta__eye-ball {
    width: 60px;
    height: 60px;
  }

  .saya-cta__pupil {
    width: 20px;
    height: 20px;
  } */

  .saya-cta__eye {
    opacity: .5;
  }

  .saya-footer {
    padding: var(--sp-xl) var(--sp-sm) var(--sp-sm);
  }

  .saya-footer__top {
    flex-direction: column;
    gap: var(--sp-lg);
    padding-bottom: 32px;
  }

  .saya-footer__left {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .saya-footer__address {
    max-width: 100%;
  }

  .saya-footer__right {
    margin-left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
  }

  .saya-footer__nav-col {
    flex: none;
  }

  .saya-footer__social-links {
    gap: 12px;
    flex-wrap: wrap;
  }

  .saya-footer__social-link {
    flex: 0 0 calc(50% - 6px);
  }

  .saya-footer__logo {
    width: 70%;
  }

  .saya-footer__countries {
    gap: 4px;
    padding: 14px 0 22px;
  }

  .saya-footer__country-item {
    font-size: clamp(11px, 3.5vw, 16px);
  }
}

/* ════════════════════════════
   MOBILE ≤ 480px
════════════════════════════ */
@media (max-width: 480px) {

  .saya-about__word {
    font-size: clamp(26px, 8.5vw, 40px);
    letter-spacing: -.5px;
  }

  .saya-slider__box,
  .saya-slider__box--wide {
    width: 88vw;
    height: 62vw;
  }

  .saya-brands__right {
    height: 320px;
  }

  .saya-brands__phone {
    width: 118px;
    height: 244px;
  }

  .saya-brands__phone-column--2 {
    margin-top: 28px;
  }

  .saya-awards__scroll-wrap {
    height: 294px;
  }

  .saya-awards__card {
    width: 84vw !important;
    min-height: 240px;
  }

  .saya-news__grid {
    grid-template-columns: 1fr;
  }

  .saya-news__card {
    min-height: 240px;
  }

  .saya-news__card-img {
    height: 70vw;
    min-height: 170px;
  }

  .saya-news__card-text {
    font-size: 12px;
  }

  .saya-news__card-date {
    font-size: 12px;
  }

  .saya-cta__eye {
    opacity: .35;
  }

  .saya-cta__eye-ball {
    width: 48px;
    height: 48px;
  }

  .saya-cta__pupil {
    width: 16px;
    height: 16px;
  }

  .saya-footer__logo {
    width: 82%;
  }

  .saya-footer__right {
    grid-template-columns: 1fr;
    gap: var(--sp-sm);
  }

  .saya-footer__social-link {
    flex: none;
  }

  .saya-footer__country-item {
    font-size: clamp(10px, 3vw, 14px);
  }
}

/* ════════════════════════════
   2400px+
════════════════════════════ */
@media (min-width: 2400px) {
  section {
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
}

.saya-brands .container-large {
  max-width: 85rem;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1280px) {
  .saya-brands__right {
    right: 20px;
  }

  .saya-brands__phone {
    position: relative;
    width: 228px;
    height: 400px;
    overflow: hidden;
  }
}

@media (max-width: 1024px) {

  .saya-brands .container-large {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .saya-brands__right {
    display: flex;
    width: 100%;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
  }

  .saya-brands__left {
    width: 100%;
  }

  .saya-brands__phone-screen .saya-frame img,
  .saya-brands__phone-screen .saya-frame video {
    border-radius: 16px !important;
  }

  .saya-brands {
    flex-direction: column;
    padding: var(--sp-xl) var(--sp-sm);
    min-height: auto;
    align-items: stretch;
  }

  .saya-brands__left {
    flex: none;
    width: 100%;
    padding-right: 0;
  }

  .saya-brands__right {
    flex: none;
    position: relative;
    top: unset;
    right: unset;
    width: max-content;
    /* wide enough for both columns */
    height: 380px;
    margin-top: var(--sp-md);
    display: flex;
    flex-direction: row;
    /* columns side by side */
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }

  /* Wrapper that actually scrolls */
  .saya-brands__right-scroll-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: var(--sp-md);
  }

  .saya-brands__right-scroll-wrap::-webkit-scrollbar {
    display: none;
  }

  .saya-brands__phone-column {
    flex-direction: column;
    /* phones stack vertically inside each column */
    flex-shrink: 0;
    width: 140px;
  }

  .saya-brands__phone-column--2 {
    margin-top: 60px;
    /* keep the stagger same as desktop */
  }

  .saya-brands__phone {
    width: 140px;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .saya-brands__right {
    height: 320px;
  }

  .saya-brands__phone-column {
    width: 118px;
  }

  .saya-brands__phone {
    width: 118px;
    height: 220px;
  }

  .saya-brands__phone-column--2 {
    margin-top: 40px;
  }
}

.saya-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: var(--fs-md);
  padding: 5px 10px;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease, gap .25s ease;
  border: 2px solid transparent;
  background: linear-gradient(#111, #151618) padding-box, linear-gradient(to right, #0138bc 0%, #0138bc 0%, #acdb55 55%, #acdb55 100%) border-box;
  border-image-slice: 1;
  font-family: HelveticaL;
  width: 42%;
  justify-content: center;
  position: relative;
}

@media (max-width: 1023px) {
  .saya-btn {
    font-size: 14px;
    padding: 4px 8px;
  }

  .slide-learn__arrow img {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 576px) {
  .saya-btn {
    width: 140px;
  }
}
/* --- Voxxy fix: unscoped responsive-visibility fallback ---------------------
   Elementor's own .elementor-hidden-* rules require a ".elementor" ancestor.
   Some Voxxy section widgets render OUTSIDE that wrapper, so those rules miss
   them. These unscoped rules (matching Elementor's default breakpoints) make
   the per-device "Hide this section" toggle work everywhere. */
@media (min-width:1025px){ .elementor-hidden-desktop{ display:none !important; } }
@media (min-width:768px) and (max-width:1024px){ .elementor-hidden-tablet{ display:none !important; } }
@media (max-width:767px){ .elementor-hidden-mobile{ display:none !important; } }

/* Voxxy: text selection highlight color */
::selection { background: #A2CF51; color: #0f0f0f; }
::-moz-selection { background: #A2CF51; color: #0f0f0f; }
