/*
 |=======================================================================================================================
 | Overview Using Less Steps
 |=======================================================================================================================
 | 1. npm install -g less
 | 2. npm install -g less-watch-compiler
 | 3. npm install css-minify -g
 | 4. less-watch-compiler
 | 5. css-minify -f filename
 |-----------------------------------------------------------------------------------------------------------------------
 |
 */
/*
 |=======================================================================================================================
 | Install Less with Node.js
 |=======================================================================================================================
 | #https://lesscss.org
 |
 | npm install -g less
 |-----------------------------------------------------------------------------------------------------------------------
 |
 */
/*
 |=======================================================================================================================
 | Compile .less to .css 
 |=======================================================================================================================
 | #Example Command Line Usage, work with Windows
 | lessc main.less main.css
 |-----------------------------------------------------------------------------------------------------------------------
 |
 */
/*
 |=======================================================================================================================
 | LESS CSS Watch Compiler
 |=======================================================================================================================
 | https://www.npmjs.com/package/less-watch-compiler
 |-----------------------------------------------------------------------------------------------------------------------
 | #The commands below may need to be prefixed with sudo depending upon your system
 | npm install -g less-watch-compiler
 |
 | #The Project Can Be Compiled With The Following Command:
 | less-watch-compiler
 |-----------------------------------------------------------------------------------------------------------------------
 */
/*
 |=======================================================================================================================
 | Using Minify CSS with CMD
 |=======================================================================================================================
 | https://www.geeksforgeeks.org/minification-of-css-files
 |
 | #Install Minification of CSS files
 | npm install css-minify -g
 |
 | #To minify a single CSS file, type the following command:
 | css-minify -f filename
 |-----------------------------------------------------------------------------------------------------------------------
 */
/*
 |=======================================================================================================================
 | Variables
 |=======================================================================================================================
 |
 */
@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes logoReveal {
  from {
    transform: translateX(-18px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes navItemDrop {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes btnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(117, 197, 181, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(117, 197, 181, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(117, 197, 181, 0);
  }
}
@keyframes shimmer {
  0% {
    left: -120%;
  }
  60% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.btn-primary-slide {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #75c5b5;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 22px rgba(117, 197, 181, 0.38);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary-slide:hover {
  background: #58b9a6;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(117, 197, 181, 0.48);
  color: #fff;
}
.btn-outline-slide {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.btn-outline-slide:hover {
  border-color: #75c5b5;
  background: rgba(117, 197, 181, 0.12);
  color: #fff;
  transform: translateY(-2px);
}
body {
  font-family: 'Barlow', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| WordPress Core styles
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
img {
  height: auto;
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter {
  display: block;
  margin: 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.nav-toggle {
  display: none;
  visibility: hidden;
}
.mobile-nav-overlay {
  display: none;
  visibility: hidden;
}
.mobile-nav {
  display: none;
  visibility: hidden;
}
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid #efefef;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  animation: headerSlideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.site-header.scrolled {
  border-color: transparent;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  height: 90px;
}
.site-header .site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: logoReveal 0.6s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
  transition: opacity 0.25s ease, transform 0.3s ease, filter 0.3s ease;
}
.site-header .site-logo:hover {
  opacity: 0.88;
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 4px 10px rgba(117, 197, 181, 0.25));
}
.site-header .site-logo .main-logo {
  height: 52px;
  width: auto;
  display: block;
}
.site-header .acf-missing {
  color: red;
  font-size: 13px;
  font-weight: 700;
}
.site-nav.stellarnav {
  width: auto !important;
  z-index: auto;
}
.site-nav.stellarnav > ul.menu {
  display: flex !important;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  gap: 0;
}
.site-nav.stellarnav > ul.menu > li {
  display: inline-flex !important;
  position: relative;
  animation: navItemDrop 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.site-nav.stellarnav > ul.menu > li:nth-child(1) {
  animation-delay: 0.3s;
}
.site-nav.stellarnav > ul.menu > li:nth-child(2) {
  animation-delay: 0.38s;
}
.site-nav.stellarnav > ul.menu > li:nth-child(3) {
  animation-delay: 0.46s;
}
.site-nav.stellarnav > ul.menu > li:nth-child(4) {
  animation-delay: 0.54s;
}
.site-nav.stellarnav > ul.menu > li:nth-child(5) {
  animation-delay: 0.62s;
}
.site-nav.stellarnav > ul.menu > li:nth-child(6) {
  animation-delay: 0.7s;
}
.site-nav.stellarnav > ul.menu > li:nth-child(7) {
  animation-delay: 0.78s;
}
.site-nav.stellarnav > ul.menu > li > a {
  position: relative;
  display: block !important;
  padding: 8px 20px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
  color: #2d2d2d !important;
  transition: color 0.25s ease, transform 0.2s ease !important;
  text-decoration: none;
}
.site-nav.stellarnav > ul.menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav.stellarnav > ul.menu > li > a:hover {
  color: #75c5b5 !important;
  transform: translateY(-1px);
}
.site-nav.stellarnav > ul.menu > li > a:hover::after {
  transform: scaleX(1);
}
.site-nav.stellarnav > ul.menu > li.current-menu-item > a,
.site-nav.stellarnav > ul.menu > li.current-menu-ancestor > a,
.site-nav.stellarnav > ul.menu > li.current-menu-parent > a,
.site-nav.stellarnav > ul.menu > li.current_page_parent > a {
  color: #75c5b5 !important;
}
.site-nav.stellarnav > ul.menu > li.current-menu-item > a::after,
.site-nav.stellarnav > ul.menu > li.current-menu-ancestor > a::after,
.site-nav.stellarnav > ul.menu > li.current-menu-parent > a::after,
.site-nav.stellarnav > ul.menu > li.current_page_parent > a::after {
  transform: scaleX(1);
}
.site-nav.stellarnav > ul.menu > li:last-child > a {
  position: relative;
  overflow: hidden;
  background: #75c5b5 !important;
  color: #fff !important;
  border-radius: 50px;
  padding: 12px 28px !important;
  letter-spacing: 1.4px !important;
  margin-left: 12px;
  box-shadow: 0 4px 16px rgba(117, 197, 181, 0.3);
  animation: btnPulse 2.8s 2s ease-out infinite;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}
.site-nav.stellarnav > ul.menu > li:last-child > a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.32) 50%, transparent 100%);
  animation: shimmer 4s 2.5s ease-in-out infinite;
  pointer-events: none;
  border-radius: 50px;
}
.site-nav.stellarnav > ul.menu > li:last-child > a::after {
  display: none !important;
}
.site-nav.stellarnav > ul.menu > li:last-child > a:hover {
  background: #55b7a4 !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(117, 197, 181, 0.48);
  animation: none;
}
.site-nav.stellarnav > ul.menu > li:last-child > a:hover::before {
  animation: none;
}
.site-nav.stellarnav > ul.menu > li:last-child > a:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(117, 197, 181, 0.3);
}
.stellarnav > ul li.current-menu-item > a {
  color: #75c5b5;
}
.stellarnav > ul li.current-menu-ancestor > a,
.stellarnav > ul li.current-menu-parent > a,
.stellarnav > ul li.current_page_parent > a {
  color: #75c5b5;
}
.pagination-wrap .pagination {
  margin-bottom: 0;
}
.pagination-wrap .pagination span,
.pagination-wrap .pagination a {
  display: inline-block;
  padding: 2px 9px;
}
.pagination-wrap .pagination a {
  color: #212a32;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pagination-wrap .pagination a:hover {
  color: #75c5b5;
}
footer {
  background: #212a32;
}
footer .copyright-container {
  text-align: center;
}
footer .copyright-container p {
  margin-bottom: 0;
}
footer .copyright-container a {
  font-size: 14px;
  color: #b4b4b4;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
footer .copyright-container a .service-owner {
  color: #75c5b5;
}
footer .copyright-container a:hover {
  color: #75c5b5;
}
footer .copyright-container .service-owner-logo {
  width: 46px;
  margin-left: 7px;
}
@keyframes kenBurns {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(1.08) translateX(-1%);
  }
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.4;
  }
}
@keyframes progressFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.home-slider {
  position: relative;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-wrap .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.hero-video-wrap .hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 24, 0.45);
}
.hero-swiper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  min-height: 680px;
}
.hero-swiper .swiper-slide {
  background: transparent;
  position: relative;
  overflow: hidden;
}
.hero-swiper .swiper-slide .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 15, 24, 0.82) 0%, rgba(8, 15, 24, 0.52) 55%, rgba(8, 15, 24, 0.18) 100%);
  z-index: 1;
}
.hero-swiper .slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  max-width: 820px;
}
.hero-swiper .slide-content .slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 20px;
}
.hero-swiper .slide-content .slide-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.hero-swiper .slide-content .slide-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-swiper .slide-content .slide-sub {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  max-width: 560px;
}
.hero-swiper .slide-content .slide-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-swiper .slide-content .slide-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-swiper .hero-pagination {
  bottom: 36px !important;
  left: 60px !important;
  width: auto !important;
  display: flex;
  gap: 10px;
}
.hero-swiper .hero-pagination .swiper-pagination-bullet {
  width: 36px;
  height: 36px;
  background: transparent;
  opacity: 1;
  position: relative;
}
.hero-swiper .hero-pagination .swiper-pagination-bullet svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.hero-swiper .hero-pagination .swiper-pagination-bullet svg circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 2;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
}
.hero-swiper .hero-pagination .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.3s ease;
}
.hero-swiper .hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background: #75c5b5;
}
.hero-swiper .hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active svg circle {
  stroke: #75c5b5;
  stroke-dashoffset: 100;
  animation: progressFill 6s linear forwards;
}
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 10;
}
.hero-progress .hero-progress-bar {
  height: 100%;
  background: #75c5b5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.home-marquee {
  background: #75c5b5;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 10;
}
.home-marquee::before,
.home-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.home-marquee::before {
  left: 0;
  background: linear-gradient(to right, #75c5b5, transparent);
}
.home-marquee::after {
  right: 0;
  background: linear-gradient(to left, #75c5b5, transparent);
}
.home-marquee .marquee-track {
  overflow: hidden;
  padding: 14px 0;
}
.home-marquee .marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.home-marquee .marquee-inner:hover {
  animation-play-state: paused;
}
.home-marquee .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding: 0 32px;
  transition: opacity 0.25s ease;
}
.home-marquee .marquee-item:hover {
  opacity: 0.75;
}
.home-marquee .marquee-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  font-style: normal;
  flex-shrink: 0;
}
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 60px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-indicator span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #75c5b5;
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
.reveal-left,
.reveal-right,
.reveal-up {
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}
body.js .reveal-left {
  opacity: 0;
  transform: translateX(-50px);
}
body.js .reveal-right {
  opacity: 0;
  transform: translateX(50px);
}
body.js .reveal-up {
  opacity: 0;
  transform: translateY(44px);
}
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-up.is-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}
@keyframes drawLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.home-about {
  background: #ffffff;
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}
.home-about::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.home-about::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.home-about .about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home-about .about-text .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 24px;
}
.home-about .about-text .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
  transform-origin: left;
}
.home-about .about-text .section-tag.is-visible::before {
  animation: drawLine 0.6s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.home-about .about-text .about-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #212a32;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.home-about .about-text .about-heading .text-accent {
  color: #75c5b5;
}
.home-about .about-text .about-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(33, 42, 50, 0.65);
  margin-bottom: 36px;
  max-width: 460px;
}
.home-about .about-text .about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.home-about .about-text .about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(33, 42, 50, 0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(33, 42, 50, 0.08);
}
.home-about .about-text .about-list li:first-child {
  border-top: 1px solid rgba(33, 42, 50, 0.08);
}
.home-about .about-text .about-list li .list-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #75c5b5;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.25s ease;
}
.home-about .about-text .about-list li .list-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -60%) rotate(45deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.home-about .about-text .about-list li:hover .list-icon {
  transform: scale(1.15);
}
.home-about .about-text .btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #75c5b5;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 50px;
  box-shadow: 0 6px 22px rgba(117, 197, 181, 0.3);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.home-about .about-text .btn-about::after {
  content: '→';
  transition: transform 0.25s ease;
}
.home-about .about-text .btn-about:hover {
  background: #58b9a6;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(117, 197, 181, 0.45);
}
.home-about .about-text .btn-about:hover::after {
  transform: translateX(5px);
}
.home-about .about-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.home-about .about-visual {
  position: relative;
}
.home-about .about-visual .about-img-wrap {
  position: relative;
  border-radius: 24px;
}
.home-about .about-visual .about-img-wrap::before,
.home-about .about-visual .about-img-wrap::after {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  border-color: #75c5b5;
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}
.home-about .about-visual .about-img-wrap::before {
  top: -6px;
  left: -6px;
  border-width: 3px 0 0 3px;
  border-radius: 8px 0 0 0;
}
.home-about .about-visual .about-img-wrap::after {
  top: -6px;
  right: -6px;
  border-width: 3px 3px 0 0;
  border-radius: 0 8px 0 0;
}
.home-about .about-visual .about-img-wrap .about-img {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 0 0 0 3px rgba(117, 197, 181, 0.35), 0 0 0 7px rgba(117, 197, 181, 0.08), 0 28px 70px rgba(33, 42, 50, 0.2);
}
.home-about .about-visual .about-img-wrap .about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: #75c5b5;
  border-radius: 16px;
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 16px 40px rgba(117, 197, 181, 0.4);
}
.home-about .about-visual .about-img-wrap .about-badge .badge-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.home-about .about-visual .about-img-wrap .about-badge .badge-number::after {
  content: '+';
  font-size: 1.8rem;
}
.home-about .about-visual .about-img-wrap .about-badge .badge-label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.4;
  margin-top: 4px;
}
.home-about .about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.home-about .about-stats .stat-card {
  background: rgba(33, 42, 50, 0.03);
  border: 1px solid rgba(33, 42, 50, 0.08);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.home-about .about-stats .stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #75c5b5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-about .about-stats .stat-card:hover {
  background: rgba(117, 197, 181, 0.08);
  border-color: rgba(117, 197, 181, 0.25);
  transform: translateY(-4px);
}
.home-about .about-stats .stat-card:hover::after {
  transform: scaleX(1);
}
.home-about .about-stats .stat-card .stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #212a32;
  line-height: 1;
}
.home-about .about-stats .stat-card .stat-number span {
  font-size: 1.5rem;
  color: #75c5b5;
}
.home-about .about-stats .stat-card .stat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(33, 42, 50, 0.45);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
@keyframes cardShine {
  0% {
    left: -80%;
  }
  100% {
    left: 120%;
  }
}
.home-events {
  background: #212a32;
  padding: 110px 60px 120px;
  overflow: hidden;
  position: relative;
}
.home-events::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.home-events::after {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.home-events .events-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.home-events .events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.home-events .events-header-left {
  flex-shrink: 0;
}
.home-events .events-header-left .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 18px;
}
.home-events .events-header-left .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.home-events .events-header-left .events-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.home-events .events-header-left .events-heading .text-accent {
  color: #75c5b5;
}
.home-events .events-header-right {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.home-events .events-header-right .events-subhead {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
  margin: 0;
}
.home-events .btn-events-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(117, 197, 181, 0.35);
  color: #75c5b5;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 50px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.home-events .btn-events-all span {
  display: inline-block;
  transition: transform 0.25s ease;
}
.home-events .btn-events-all:hover {
  background: #75c5b5;
  border-color: #75c5b5;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(117, 197, 181, 0.3);
}
.home-events .btn-events-all:hover span {
  transform: translateX(6px);
}
.home-events .events-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 640px;
}
.home-events .event-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-events .event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #75c5b5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}
.home-events .event-card:hover {
  border-color: rgba(117, 197, 181, 0.22);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(117, 197, 181, 0.07);
  transform: translateY(-5px);
}
.home-events .event-card:hover::before {
  transform: scaleX(1);
}
.home-events .event-card:hover .event-card-img {
  transform: scale(1.05);
}
.home-events .event-card:hover .event-cta span {
  transform: translateX(6px);
}
.home-events .event-card--featured {
  grid-row: 1 / 3;
  display: block;
}
.home-events .event-card--featured .event-card-img {
  height: 100%;
  border-radius: 0;
}
.home-events .event-card--featured .event-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 44px 40px 40px;
  background: linear-gradient(0deg, rgba(10, 16, 20, 0.96) 0%, rgba(10, 16, 20, 0.7) 55%, transparent 100%);
  z-index: 4;
}
.home-events .event-card--featured .event-title {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  margin-bottom: 14px;
}
.home-events .event-card--featured .event-desc {
  display: block;
  margin-bottom: 24px;
}
.home-events .event-card:not(.event-card--featured) {
  display: flex;
  flex-direction: row;
}
.home-events .event-card:not(.event-card--featured) .event-card-img {
  width: 42%;
  flex-shrink: 0;
  height: auto;
  border-radius: 0;
}
.home-events .event-card:not(.event-card--featured) .event-card-body {
  flex: 1;
  padding: 28px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.025);
}
.home-events .event-card:not(.event-card--featured) .event-title {
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.home-events .event-card:not(.event-card--featured) .event-desc {
  display: none;
}
.home-events .event-card-img {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-events .event-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(33, 42, 50, 0.25) 0%, rgba(10, 16, 20, 0.55) 100%);
  z-index: 1;
}
.home-events .event-card-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: skewX(-12deg);
  z-index: 3;
  pointer-events: none;
}
.home-events .event-card-img.event-img-1 {
  background: linear-gradient(140deg, #0d2535 0%, #0a3028 60%, #0f3d35 100%);
}
.home-events .event-card-img.event-img-2 {
  background: linear-gradient(140deg, #162033 0%, #0b2828 100%);
}
.home-events .event-card-img.event-img-3 {
  background: linear-gradient(140deg, #1a2535 0%, #0d3232 100%);
}
.home-events .event-card-img .event-num {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  z-index: 2;
  letter-spacing: -2px;
  pointer-events: none;
  user-select: none;
}
.home-events .event-card-img .event-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  background: rgba(117, 197, 181, 0.15);
  border: 1px solid rgba(117, 197, 181, 0.45);
  color: #75c5b5;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.home-events .event-card:hover .event-card-img::before {
  animation: cardShine 0.65s ease forwards;
}
.home-events .event-card-overlay {
  z-index: 4;
}
.home-events .event-meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
}
.home-events .event-meta span {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.home-events .event-meta .event-date {
  color: #75c5b5;
}
.home-events .event-meta .event-loc {
  color: rgba(255, 255, 255, 0.4);
  margin-left: 14px;
  padding-left: 14px;
  position: relative;
}
.home-events .event-meta .event-loc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
.home-events .event-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}
.home-events .event-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.home-events .event-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #75c5b5;
  transition: color 0.25s ease;
  margin-top: auto;
}
.home-events .event-cta span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-events .event-cta:hover {
  color: #a0d7cc;
}
.home-events .event-card:not(.event-card--featured) .event-card-body .event-meta {
  margin-bottom: 8px;
}
.home-events .event-card:not(.event-card--featured) .event-card-body .event-title {
  margin-bottom: 0;
  flex: 1;
  display: flex;
  align-items: center;
}
@keyframes activePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(117, 197, 181, 0.9);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(117, 197, 181, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(117, 197, 181, 0);
  }
}
@keyframes scanLine {
  0% {
    top: -2px;
    opacity: 0.8;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.home-global {
  background: #ffffff;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.home-global::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(33, 42, 50, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.home-global .global-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.home-global .global-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(33, 42, 50, 0.09);
}
.home-global .global-header-left {
  flex-shrink: 0;
}
.home-global .global-header-left .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 18px;
}
.home-global .global-header-left .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.home-global .global-header-left .global-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.home-global .global-header-left .global-heading .text-accent {
  color: #75c5b5;
}
.home-global .global-header-right {
  max-width: 400px;
}
.home-global .global-header-right .global-subhead {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(33, 42, 50, 0.55);
  margin: 0;
}
.home-global .global-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(33, 42, 50, 0.1);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 48px;
  position: relative;
  background: #212a32;
}
.home-global .global-stats::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117, 197, 181, 0.6), transparent);
  animation: scanLine 4s linear infinite;
  z-index: 2;
  pointer-events: none;
}
.home-global .global-stats .gstat {
  padding: 36px 28px;
  text-align: center;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: background 0.3s ease;
}
.home-global .global-stats .gstat:last-child {
  border-right: none;
}
.home-global .global-stats .gstat:hover {
  background: rgba(117, 197, 181, 0.07);
}
.home-global .global-stats .gstat .gstat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.home-global .global-stats .gstat .gstat-num em {
  font-style: normal;
  color: #75c5b5;
  font-size: 58%;
  margin-left: 2px;
}
.home-global .global-stats .gstat .gstat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.home-global .global-markets {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.home-global .market-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 18px rgba(33, 42, 50, 0.12);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.38s ease;
}
.home-global .market-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 46px rgba(33, 42, 50, 0.22), 0 0 0 2px rgba(117, 197, 181, 0.5);
}
.home-global .market-card:hover .market-card-bg {
  transform: scale(1.1);
}
.home-global .market-card:hover .market-card-content {
  background: linear-gradient(0deg, rgba(10, 16, 20, 0.96) 0%, rgba(10, 16, 20, 0.5) 100%);
}
.home-global .market-card:hover .market-flag-img {
  transform: scale(1.1) translateY(-2px);
}
.home-global .market-card-bg {
  position: absolute;
  inset: 0;
  background-image: var(--flag);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-global .market-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 16, 20, 0.88) 0%, rgba(10, 16, 20, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 14px 14px;
  transition: background 0.38s ease;
}
.home-global .market-active-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #75c5b5;
  animation: activePulse 2.4s ease-out infinite;
  z-index: 2;
}
.home-global .market-flag-img {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 32px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  display: block;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-global .market-info {
  position: relative;
  z-index: 2;
}
.home-global .market-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.1;
  margin-bottom: 2px;
}
.home-global .market-role {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.home-global .market-card:nth-child(2) .market-active-dot {
  animation-delay: 0.15s;
}
.home-global .market-card:nth-child(3) .market-active-dot {
  animation-delay: 0.3s;
}
.home-global .market-card:nth-child(4) .market-active-dot {
  animation-delay: 0.45s;
}
.home-global .market-card:nth-child(5) .market-active-dot {
  animation-delay: 0.6s;
}
.home-global .market-card:nth-child(6) .market-active-dot {
  animation-delay: 0.75s;
}
.home-global .market-card:nth-child(7) .market-active-dot {
  animation-delay: 0.9s;
}
.home-global .market-card:nth-child(8) .market-active-dot {
  animation-delay: 1.05s;
}
.home-global .market-card:nth-child(9) .market-active-dot {
  animation-delay: 1.2s;
}
.home-global .market-card:nth-child(10) .market-active-dot {
  animation-delay: 1.35s;
}
.home-global .market-card:nth-child(11) .market-active-dot {
  animation-delay: 1.5s;
}
.home-global .market-card:nth-child(12) .market-active-dot {
  animation-delay: 1.65s;
}
.home-global .market-card:nth-child(13) .market-active-dot {
  animation-delay: 1.8s;
}
.home-global .market-card:nth-child(14) .market-active-dot {
  animation-delay: 1.95s;
}
.home-global .market-card:nth-child(15) .market-active-dot {
  animation-delay: 2.1s;
}
.home-global .market-card:nth-child(16) .market-active-dot {
  animation-delay: 2.25s;
}
.home-global .market-card:nth-child(17) .market-active-dot {
  animation-delay: 2.4s;
}
.home-global .market-card:nth-child(18) .market-active-dot {
  animation-delay: 2.55s;
}
@keyframes brandScrollRev {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.home-brands {
  background: #212a32;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}
.home-brands::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.home-brands::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.home-brands .brands-container {
  position: relative;
  z-index: 1;
}
.home-brands .brands-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
  padding: 0 60px 52px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.home-brands .brands-header-left {
  flex-shrink: 0;
}
.home-brands .brands-header-left .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 18px;
}
.home-brands .brands-header-left .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.home-brands .brands-header-left .brands-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.home-brands .brands-header-left .brands-heading .text-accent {
  color: #75c5b5;
}
.home-brands .brands-header-right {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.home-brands .brands-header-right .brands-subhead {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
}
.home-brands .btn-brands-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(117, 197, 181, 0.35);
  color: #75c5b5;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.home-brands .btn-brands-all span {
  display: inline-block;
  transition: transform 0.25s ease;
}
.home-brands .btn-brands-all:hover {
  background: #75c5b5;
  border-color: #75c5b5;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(117, 197, 181, 0.28);
}
.home-brands .btn-brands-all:hover span {
  transform: translateX(5px);
}
.home-brands .brands-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 72px;
  position: relative;
}
.home-brands .brands-marquee-wrap::before,
.home-brands .brands-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.home-brands .brands-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #212a32, transparent);
}
.home-brands .brands-marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #212a32, transparent);
}
.home-brands .brands-track {
  overflow: hidden;
  width: 100%;
}
.home-brands .brands-track:hover .brands-inner {
  animation-play-state: paused;
}
.home-brands .brands-inner {
  display: flex;
  gap: 16px;
  width: max-content;
}
.home-brands .brands-track--fwd .brands-inner {
  animation: marqueeScroll 30s linear infinite;
}
.home-brands .brands-track--rev .brands-inner {
  animation: brandScrollRev 34s linear infinite;
}
.home-brands .brand-card {
  flex-shrink: 0;
  width: 210px;
  padding: 28px 24px 22px;
  background: #ffffff;
  border: 1px solid rgba(33, 42, 50, 0.08);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}
.home-brands .brand-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #75c5b5;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-brands .brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(117, 197, 181, 0.25);
}
.home-brands .brand-card:hover::before {
  transform: scaleX(1);
}
.home-brands .brand-card:hover .brand-logo-img {
  transform: scale(1.06);
  opacity: 1;
}
.home-brands .brand-card:hover .brand-initials {
  transform: scale(1.08);
  background: rgba(117, 197, 181, 0.2);
}
.home-brands .brand-card .brand-logo-img {
  width: 110px;
  height: 64px;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.3s ease, transform 0.35s ease;
}
.home-brands .brand-card .brand-initials {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(117, 197, 181, 0.1);
  border: 1px solid rgba(117, 197, 181, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #75c5b5;
  letter-spacing: 1px;
  transition: background 0.35s ease, transform 0.35s ease;
}
.home-brands .brand-card .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.2;
}
.home-brands .brand-card .brand-cat {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #75c5b5;
}
.home-brands .brands-cta {
  padding: 0 60px;
  max-width: 1280px;
  margin: 0 auto;
}
.home-brands .brands-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: rgba(117, 197, 181, 0.07);
  border: 1px solid rgba(117, 197, 181, 0.2);
  border-radius: 20px;
  padding: 40px 52px;
  position: relative;
  overflow: hidden;
}
.home-brands .brands-cta-inner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.home-brands .brands-cta-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.home-brands .brands-cta-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.home-brands .btn-partner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #75c5b5;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(117, 197, 181, 0.3);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.home-brands .btn-partner span {
  display: inline-block;
  transition: transform 0.25s ease;
}
.home-brands .btn-partner:hover {
  background: #58b9a6;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(117, 197, 181, 0.42);
}
.home-brands .btn-partner:hover span {
  transform: translateX(5px);
}
.home-gallery {
  background: #ffffff;
  padding: 110px 0 100px;
  position: relative;
  overflow: clip;
}
.home-gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(33, 42, 50, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.home-gallery::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.home-gallery .gallery-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}
.home-gallery .gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(33, 42, 50, 0.08);
}
.home-gallery .gallery-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 18px;
}
.home-gallery .gallery-header .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.home-gallery .gallery-header .gallery-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.home-gallery .gallery-header .gallery-heading .text-accent {
  color: #75c5b5;
}
.home-gallery .gallery-header-left {
  flex-shrink: 0;
}
.home-gallery .gallery-header-right {
  max-width: 400px;
}
.home-gallery .gallery-header-right .gallery-subhead {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(33, 42, 50, 0.52);
  margin: 0;
}
.home-gallery .gallery-marquee-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
}
.home-gallery .gallery-marquee-wrap::before,
.home-gallery .gallery-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 8px;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}
.home-gallery .gallery-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}
.home-gallery .gallery-marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
}
.home-gallery .gallery-track {
  display: flex;
  overflow: hidden;
  margin-bottom: 16px;
}
.home-gallery .gallery-track:last-child {
  margin-bottom: 0;
}
.home-gallery .gallery-track .gallery-track-inner {
  display: flex;
  gap: 16px;
  will-change: transform;
  flex-shrink: 0;
}
.home-gallery .gallery-track:hover .gallery-track-inner {
  animation-play-state: paused;
}
.home-gallery .gallery-track--fwd .gallery-track-inner {
  animation: gallery-fwd 36s linear infinite;
}
.home-gallery .gallery-track--rev .gallery-track-inner {
  animation: gallery-rev 44s linear infinite;
}
.home-gallery .gallery-item {
  flex-shrink: 0;
  width: 400px;
  height: 270px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.home-gallery .gallery-item .gallery-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-gallery .gallery-item .gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 12, 16, 0.88) 0%, rgba(8, 12, 16, 0.08) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px 28px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.home-gallery .gallery-item:hover .gallery-item-bg {
  transform: scale(1.07);
}
.home-gallery .gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.home-gallery .gallery-item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.home-gallery .gallery-item-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #75c5b5;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.home-gallery .gallery-item-tag::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: #75c5b5;
  border-radius: 2px;
}
.home-gallery .gallery-item-country {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  display: block;
}
.home-gallery .gallery-item-city {
  font-family: 'Barlow', sans-serif;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin-top: 3px;
  display: block;
}
.home-gallery .gallery-item-zoom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.home-gallery .gallery-item-zoom svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
.home-gallery .gallery-item:hover .gallery-item-zoom {
  background: #75c5b5;
  border-color: #75c5b5;
  transform: scale(1.12);
}
.home-gallery .gallery-item:hover .gallery-item-zoom svg {
  stroke: #212a32;
}
@keyframes gallery-fwd {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes gallery-rev {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
body.lightbox-open {
  overflow: hidden;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 16, 0.95);
  cursor: pointer;
}
.lightbox-inner {
  position: relative;
  z-index: 2;
  width: 90vw;
  max-width: 1100px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img-wrap {
  width: 100%;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  transition: opacity 0.25s ease;
}
.lightbox-img:not([src]),
.lightbox-img[src=""] {
  display: none;
}
.lightbox-ph {
  width: 100%;
  height: 520px;
  border-radius: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.lightbox-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.lightbox-ph.is-visible {
  display: flex;
}
.lb-ph-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 40px;
}
.lb-ph-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #75c5b5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lb-ph-tag::before,
.lb-ph-tag::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: #75c5b5;
  border-radius: 2px;
}
.lb-ph-country {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  display: block;
}
.lb-ph-city {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  display: block;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 20px;
  height: 20px;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: #75c5b5;
  border-color: #75c5b5;
  transform: scale(1.1);
}
.lightbox-close {
  top: -52px;
  right: 0;
  width: 44px;
  height: 44px;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev {
  left: -70px;
}
.lightbox-next {
  right: -70px;
}
.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 4px 0;
}
.lightbox-caption {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.lightbox-counter {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}
.site-footer {
  position: relative;
}
.footer-cta-band {
  background: #75c5b5;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.footer-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(33, 42, 50, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.footer-cta-band::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(33, 42, 50, 0.06);
  pointer-events: none;
}
.footer-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.footer-cta-text {
  flex: 1;
}
.footer-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(33, 42, 50, 0.55);
  margin-bottom: 14px;
}
.footer-cta-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(33, 42, 50, 0.4);
  border-radius: 2px;
}
.footer-cta-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
  margin: 0 0 12px;
}
.footer-cta-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(33, 42, 50, 0.58);
  margin: 0;
  max-width: 440px;
}
.footer-cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.footer-btn-primary {
  padding: 16px 36px;
  background: #212a32;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-btn-primary:hover {
  background: #0a1018;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(8, 14, 20, 0.3);
}
.footer-btn-outline {
  padding: 16px 36px;
  background: transparent;
  color: #212a32;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid rgba(33, 42, 50, 0.28);
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.footer-btn-outline:hover {
  border-color: #212a32;
  background: rgba(33, 42, 50, 0.1);
}
.footer-body {
  background: #0d1822;
  padding: 72px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.1fr 1.5fr;
  gap: 52px;
  align-items: start;
}
.footer-col--brand {
  padding-right: 16px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}
.footer-logo img {
  height: 50px;
  width: auto;
}
.footer-brand-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 0 28px;
}
.footer-stats-row {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
}
.footer-stat {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-stat:last-child {
  border-right: 0;
}
.footer-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #75c5b5;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}
.footer-stat span {
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-social:hover {
  background: #75c5b5;
  border-color: #75c5b5;
  color: #212a32;
  transform: translateY(-3px);
}
.footer-col-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #75c5b5;
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.footer-col-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(117, 197, 181, 0.15);
  min-width: 20px;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links li a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color 0.25s ease, gap 0.25s ease;
  position: relative;
}
.footer-links li a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1.5px;
  background: #75c5b5;
  border-radius: 2px;
  margin-right: 0;
  transition: width 0.25s ease, margin-right 0.25s ease;
}
.footer-links li a:hover {
  color: #fff;
}
.footer-links li a:hover::before {
  width: 14px;
  margin-right: 8px;
}
.footer-markets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 12px;
}
.footer-contact-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(117, 197, 181, 0.08);
  border: 1px solid rgba(117, 197, 181, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-icon svg {
  width: 15px;
  height: 15px;
  stroke: #75c5b5;
}
.footer-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-contact-label {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #75c5b5;
  display: block;
}
.footer-contact-detail a,
.footer-contact-detail span {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  line-height: 1.65;
  transition: color 0.25s ease;
}
.footer-contact-detail a:hover {
  color: #75c5b5;
}
.footer-newsletter {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
}
.footer-newsletter-label {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0 12px;
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.footer-newsletter-form:focus-within {
  border-color: #75c5b5;
}
.footer-newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.83rem;
  color: #fff;
  min-width: 0;
}
.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}
.footer-newsletter-btn {
  width: 46px;
  background: #75c5b5;
  border: none;
  color: #212a32;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.footer-newsletter-btn svg {
  width: 18px;
  height: 18px;
}
.footer-newsletter-btn:hover {
  background: #58b9a6;
}
.footer-bottom {
  background: #080e15;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-copyright {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.24);
  margin: 0;
}
.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}
.footer-legal li a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.24);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-legal li a:hover {
  color: #75c5b5;
}
.footer-dev {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.18);
  margin: 0;
}
.footer-dev a {
  color: #75c5b5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}
.footer-dev a:hover {
  color: #fff;
}
@keyframes hero-zoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
.shop-hero {
  position: relative;
  width: 100%;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.shop-hero .shop-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
  transform: scale(1.05);
  animation: hero-zoom 8s ease-out forwards;
}
.shop-hero .shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 10, 16, 0.55) 0%, rgba(6, 10, 16, 0.72) 50%, rgba(6, 10, 16, 0.9) 100%), linear-gradient(135deg, rgba(7, 24, 18, 0.6) 0%, transparent 60%);
  z-index: 1;
}
.shop-hero .shop-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 180px 60px 140px;
  width: 100%;
}
.shop-hero .shop-hero-inner .section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 28px;
}
.shop-hero .shop-hero-inner .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.shop-hero .shop-hero-inner .section-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.shop-hero .shop-hero-inner .shop-hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  font-weight: 900;
  line-height: 0.97;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.shop-hero .shop-hero-inner .shop-hero-heading .text-accent {
  color: #75c5b5;
}
.shop-hero .shop-hero-inner .shop-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.58);
  max-width: 560px;
  margin: 0 auto 52px;
}
.shop-hero .shop-hero-inner .shop-hero-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.shop-hero .shop-hero-inner .shop-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.04);
}
.shop-hero .shop-hero-inner .shop-tab-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
}
.shop-hero .shop-hero-inner .shop-tab-btn:hover,
.shop-hero .shop-hero-inner .shop-tab-btn--active {
  background: #75c5b5;
  border-color: #75c5b5;
  color: #fff;
  box-shadow: 0 8px 28px rgba(117, 197, 181, 0.42);
  transform: translateY(-2px);
}
.shop-hero .scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 60px;
  z-index: 10;
}
.shop-section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 64px;
}
.shop-section-header--dark .section-tag::before {
  background: #75c5b5;
}
.shop-section-header-left .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 24px;
}
.shop-section-header-left .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.shop-section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.shop-section-heading .text-accent {
  color: #75c5b5;
}
.shop-section-heading--white {
  color: #fff;
}
.shop-section-header-right {
  padding-top: 8px;
}
.shop-section-subhead {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(33, 42, 50, 0.6);
  margin-bottom: 28px;
}
.shop-section-subhead--light {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}
.shop-store-count {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(117, 197, 181, 0.08);
  border: 1px solid rgba(117, 197, 181, 0.2);
  border-radius: 50px;
  padding: 10px 24px;
}
.shop-store-count .shop-store-count-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #75c5b5;
  line-height: 1;
}
.shop-store-count .shop-store-count-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(33, 42, 50, 0.55);
}
.shop-stores-section {
  background: #212a32;
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}
.shop-stores-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.shop-stores-section .shop-stores-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.shop-stores-section .shop-stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.shop-store-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(33, 42, 50, 0.07);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}
.shop-store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.14);
}
.shop-store-card:hover .shop-store-card-img {
  transform: scale(1.04);
}
.shop-store-card:hover .shop-store-cta {
  background: #75c5b5;
  color: #fff;
  border-color: #75c5b5;
}
.shop-store-card .shop-store-card-img {
  width: 100%;
  height: 220px;
  background-color: #212a32;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.shop-store-card .shop-store-card-img .shop-store-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 15, 24, 0.65) 0%, transparent 60%);
}
.shop-store-card .shop-store-card-img .shop-store-num {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.5);
}
.shop-store-card .shop-store-card-img .shop-store-flag {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 32px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.shop-store-card .shop-store-card-body {
  padding: 24px 28px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.shop-store-card .shop-store-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shop-store-card .shop-store-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #75c5b5;
}
.shop-store-card .shop-store-country {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.shop-store-card .shop-store-city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  color: rgba(33, 42, 50, 0.5);
}
.shop-store-card .shop-store-city svg {
  width: 12px;
  height: 12px;
  stroke: #75c5b5;
  flex-shrink: 0;
}
.shop-store-card .shop-store-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(33, 42, 50, 0.15);
  color: #212a32;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.shop-store-card .shop-store-cta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.shop-store-card .shop-store-cta--disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.shop-online-section {
  background: #f4f6f8;
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}
.shop-online-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.shop-online-section .shop-online-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.shop-online-section .shop-online-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.shop-online-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(33, 42, 50, 0.08);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  position: relative;
}
.shop-online-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--platform-color, #75c5b5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-online-card:hover {
  background: #fafbfc;
  border-color: rgba(33, 42, 50, 0.14);
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.14);
}
.shop-online-card:hover::before {
  transform: scaleX(1);
}
.shop-online-card:hover .shop-now-btn {
  background: #75c5b5;
  color: #fff;
  border-color: #75c5b5;
}
.shop-online-card .shop-online-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 20px;
}
.shop-online-card .shop-online-platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.shop-online-card .shop-online-platform-badge .shop-online-platform-logo {
  max-height: 28px;
  max-width: 90px;
  object-fit: contain;
}
.shop-online-card .shop-online-platform-badge .shop-online-platform-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.shop-online-card .shop-online-flag {
  width: 34px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.shop-online-card .shop-online-card-body {
  padding: 4px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.shop-online-card .shop-online-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.shop-online-card .shop-online-region {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  color: rgba(33, 42, 50, 0.45);
}
.shop-online-card .shop-online-region svg {
  width: 12px;
  height: 12px;
  stroke: #75c5b5;
  flex-shrink: 0;
}
.shop-online-card .shop-online-products {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-top: 4px;
}
.shop-online-card .shop-online-card-footer {
  padding: 0 28px 28px;
}
.shop-online-card .shop-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.shop-online-card .shop-now-btn svg {
  width: 13px;
  height: 13px;
}
.brands-hero {
  position: relative;
  width: 100%;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.brands-hero .brands-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: hero-zoom 8s ease-out forwards;
}
.brands-hero .brands-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 10, 16, 0.5) 0%, rgba(6, 10, 16, 0.75) 55%, rgba(6, 10, 16, 0.92) 100%), linear-gradient(135deg, rgba(7, 24, 18, 0.55) 0%, transparent 60%);
  z-index: 1;
}
.brands-hero .brands-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 180px 60px 140px;
  width: 100%;
}
.brands-hero .brands-hero-inner .section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 28px;
}
.brands-hero .brands-hero-inner .section-tag::before,
.brands-hero .brands-hero-inner .section-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.brands-hero .brands-hero-inner .brands-hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  font-weight: 900;
  line-height: 0.97;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.brands-hero .brands-hero-inner .brands-hero-heading .text-accent {
  color: #75c5b5;
}
.brands-hero .brands-hero-inner .brands-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.58);
  max-width: 580px;
  margin: 0 auto 52px;
}
.brands-hero .brands-hero-inner .brands-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.brands-hero .brands-hero-inner .brands-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 44px;
}
.brands-hero .brands-hero-inner .brands-hero-stat .brands-hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.brands-hero .brands-hero-inner .brands-hero-stat .brands-hero-stat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.brands-hero .brands-hero-inner .brands-hero-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}
.brands-hero .scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.brands-page-section {
  background: #f4f6f8;
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}
.brands-page-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.brands-page-section .brands-page-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.brands-page-section .brands-page-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 72px;
}
.brands-page-section .brands-page-header-left .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 24px;
}
.brands-page-section .brands-page-header-left .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.brands-page-section .brands-page-header-left .brands-page-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.brands-page-section .brands-page-header-left .brands-page-heading .text-accent {
  color: #75c5b5;
}
.brands-page-section .brands-page-header-right .brands-page-subhead {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(33, 42, 50, 0.6);
  margin-bottom: 32px;
}
.brands-page-section .brands-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.brands-page-section .brands-filter-btn {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(33, 42, 50, 0.55);
  background: #fff;
  border: 1px solid rgba(33, 42, 50, 0.12);
  border-radius: 50px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.brands-page-section .brands-filter-btn:hover {
  color: #75c5b5;
  border-color: #75c5b5;
  transform: translateY(-1px);
}
.brands-page-section .brands-filter-btn.is-active {
  background: #75c5b5;
  color: #fff;
  border-color: #75c5b5;
  box-shadow: 0 4px 16px rgba(117, 197, 181, 0.35);
}
.brands-page-section .brands-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.brands-page-section .brand-page-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(33, 42, 50, 0.08);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.brands-page-section .brand-page-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #75c5b5;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.brands-page-section .brand-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(117, 197, 181, 0.22);
  border-color: rgba(117, 197, 181, 0.2);
}
.brands-page-section .brand-page-card:hover::after {
  transform: scaleX(1);
}
.brands-page-section .brand-page-card:hover .brand-logo-img {
  transform: scale(1.06);
  opacity: 1;
}
.brands-page-section .brand-page-card:hover .brand-initials {
  transform: scale(1.06);
}
.brands-page-section .brand-page-card:hover .brand-page-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.brands-page-section .brand-page-card .brand-page-card-logo {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-bottom: none;
  padding: 36px;
}
.brands-page-section .brand-page-card .brand-page-card-logo .brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.3s ease, transform 0.35s ease;
}
.brands-page-section .brand-page-card .brand-page-card-logo .brand-initials {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(117, 197, 181, 0.1);
  border: 1px solid rgba(117, 197, 181, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #75c5b5;
  letter-spacing: 1px;
  transition: background 0.35s ease, transform 0.35s ease;
}
.brands-page-section .brand-page-card .brand-page-card-info {
  width: 100%;
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.brands-page-section .brand-page-card .brand-page-card-info .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0;
}
.brands-page-section .brand-page-card .brand-page-card-info .brand-cat {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #75c5b5;
}
.brands-page-section .brand-page-card .brand-page-card-info .brand-page-card-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(33, 42, 50, 0.52);
  margin: 8px 0 0;
}
.brands-page-section .brand-page-card .brand-page-card-arrow {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #75c5b5;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.about-hero {
  position: relative;
  width: 100%;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.about-hero .about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: hero-zoom 8s ease-out forwards;
}
.about-hero .about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 10, 16, 0.48) 0%, rgba(6, 10, 16, 0.72) 55%, rgba(6, 10, 16, 0.92) 100%), linear-gradient(135deg, rgba(7, 24, 18, 0.55) 0%, transparent 60%);
  z-index: 1;
}
.about-hero .about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 180px 60px 140px;
  width: 100%;
}
.about-hero .about-hero-inner .section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 28px;
}
.about-hero .about-hero-inner .section-tag::before,
.about-hero .about-hero-inner .section-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.about-hero .about-hero-inner .about-hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  font-weight: 900;
  line-height: 0.97;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.about-hero .about-hero-inner .about-hero-heading .text-accent {
  color: #75c5b5;
}
.about-hero .about-hero-inner .about-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.58);
  max-width: 600px;
  margin: 0 auto 52px;
}
.about-hero .about-hero-inner .about-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.about-hero .scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.about-mission {
  background: #ffffff;
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}
.about-mission::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.09) 0%, transparent 70%);
  pointer-events: none;
}
.about-mission::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-mission .about-mission-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-mission .about-mission-text .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 24px;
}
.about-mission .about-mission-text .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.about-mission .about-mission-text .about-mission-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}
.about-mission .about-mission-text .about-mission-heading .text-accent {
  color: #75c5b5;
}
.about-mission .about-mission-text .about-mission-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(33, 42, 50, 0.65);
  margin-bottom: 20px;
  max-width: 480px;
}
.about-mission .about-mission-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-mission .about-mission-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.about-mission .about-mission-img-wrap .about-mission-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-mission .about-mission-img-wrap:hover .about-mission-img {
  transform: scale(1.03);
}
.about-mission .about-mission-img-wrap .about-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: #75c5b5;
  color: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(117, 197, 181, 0.45);
}
.about-mission .about-mission-img-wrap .about-badge .badge-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.about-mission .about-mission-img-wrap .about-badge .badge-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  margin-top: 4px;
  line-height: 1.4;
}
.about-values {
  background: #212a32;
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}
.about-values::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-values .about-values-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-values .about-values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 72px;
}
.about-values .about-values-header-left .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 24px;
}
.about-values .about-values-header-left .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.about-values .about-values-header-left .about-values-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.about-values .about-values-header-left .about-values-heading .text-accent {
  color: #75c5b5;
}
.about-values .about-values-header-right .about-values-subhead {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  max-width: 480px;
}
.about-values .about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-values .value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.about-values .value-card:hover {
  background: rgba(117, 197, 181, 0.08);
  border-color: rgba(117, 197, 181, 0.28);
  transform: translateY(-6px);
}
.about-values .value-card:hover .value-card-icon {
  background: #75c5b5;
}
.about-values .value-card:hover .value-card-icon svg {
  stroke: #fff;
}
.about-values .value-card .value-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(117, 197, 181, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.35s ease;
}
.about-values .value-card .value-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #75c5b5;
  transition: stroke 0.35s ease;
}
.about-values .value-card .value-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.about-values .value-card .value-card-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.about-timeline {
  background: #ffffff;
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}
.about-timeline::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-timeline .about-timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-timeline .about-timeline-header {
  text-align: center;
  margin-bottom: 80px;
}
.about-timeline .about-timeline-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 20px;
}
.about-timeline .about-timeline-header .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.about-timeline .about-timeline-header .about-timeline-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.about-timeline .about-timeline-header .about-timeline-heading .text-accent {
  color: #75c5b5;
}
.about-timeline .about-timeline-track {
  position: relative;
  padding: 0 0 0;
}
.about-timeline .about-timeline-track .timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, #75c5b5, rgba(117, 197, 181, 0.12));
  transform: translateX(-50%);
  z-index: 0;
}
.about-timeline .timeline-item {
  position: relative;
  width: 45%;
  margin-bottom: 60px;
  z-index: 1;
}
.about-timeline .timeline-item.timeline-item--left {
  margin-left: 0;
  margin-right: auto;
  text-align: right;
}
.about-timeline .timeline-item.timeline-item--left .timeline-dot {
  right: -8%;
  left: auto;
}
.about-timeline .timeline-item.timeline-item--right {
  margin-left: auto;
  margin-right: 0;
}
.about-timeline .timeline-item.timeline-item--right .timeline-dot {
  left: -8%;
  right: auto;
}
.about-timeline .timeline-item .timeline-dot {
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #75c5b5;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(117, 197, 181, 0.35);
  z-index: 2;
}
.about-timeline .timeline-item .timeline-content {
  background: #f8fafb;
  border: 1px solid rgba(33, 42, 50, 0.08);
  border-radius: 14px;
  padding: 28px 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.about-timeline .timeline-item .timeline-content:hover {
  border-color: rgba(117, 197, 181, 0.35);
  box-shadow: 0 8px 32px rgba(117, 197, 181, 0.12);
  transform: translateY(-3px);
}
.about-timeline .timeline-item .timeline-year {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #75c5b5;
  background: rgba(117, 197, 181, 0.1);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 12px;
}
.about-timeline .timeline-item .timeline-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.about-timeline .timeline-item .timeline-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(33, 42, 50, 0.6);
  margin: 0;
}
.about-stats-section {
  background: #75c5b5;
  padding: 72px 60px;
  overflow: hidden;
}
.about-stats-section .about-stats-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.about-stats-section .about-stats-container .gstat {
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
.about-stats-section .about-stats-container .gstat:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.about-stats-section .about-stats-container .gstat .gstat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.about-stats-section .about-stats-container .gstat .gstat-num em {
  font-style: normal;
  font-size: 0.65em;
  color: rgba(255, 255, 255, 0.8);
}
.about-stats-section .about-stats-container .gstat .gstat-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.gn-section {
  position: relative;
  background: linear-gradient(155deg, #050c14 0%, #091b22 48%, #060f0c 100%);
  overflow: hidden;
  line-height: 0;
}
.gn-section .gn-heading {
  position: absolute;
  top: 36px;
  left: 60px;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1;
}
.gn-section .gn-heading-bar {
  width: 3px;
  height: 52px;
  background: #75c5b5;
  margin-top: 3px;
  flex-shrink: 0;
  border-radius: 2px;
}
.gn-section .gn-heading-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#gn-svg {
  display: block;
  width: 100%;
  height: auto;
}
.gnc-country {
  fill: rgba(117, 197, 181, 0.48);
}
.gnc-borders {
  fill: none;
  stroke: rgba(5, 12, 20, 0.55);
  stroke-width: 0.5px;
}
.gnc-graticule {
  fill: none;
  stroke: rgba(117, 197, 181, 0.06);
  stroke-width: 0.4px;
}
.gnc-region {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  fill: #75c5b5;
  text-transform: uppercase;
  opacity: 0.6;
  pointer-events: none;
}
.gnc-arc {
  fill: none;
  stroke: #e8d44d;
  stroke-width: 1.3px;
  opacity: 0.82;
  filter: drop-shadow(0 0 3px rgba(232, 212, 77, 0.45));
}
.gnc-tdot {
  fill: #fff;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.95));
}
.gnc-dot {
  fill: #fff;
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 0.8px;
}
.gnc-label {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 500;
  fill: rgba(255, 255, 255, 0.82);
  pointer-events: none;
  user-select: none;
}
.gnc-hub-label {
  font-size: 10px;
  font-weight: 700;
  fill: #75c5b5;
}
.gnc-hub-core {
  fill: #75c5b5;
  filter: drop-shadow(0 0 6px rgba(117, 197, 181, 0.85));
}
.gnc-hub-ring1 {
  fill: rgba(117, 197, 181, 0.1);
  transform-origin: 0 0;
  animation: gnc-pulse 2.6s ease-out infinite;
}
.gnc-hub-ring2 {
  fill: rgba(117, 197, 181, 0.18);
  transform-origin: 0 0;
  animation: gnc-pulse 2.6s ease-out infinite 0.65s;
}
@keyframes gnc-pulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
.global-network {
  display: none;
}
.about-cta {
  background: #212a32;
  padding: 140px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.about-cta .about-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.about-cta .about-cta-inner .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 24px;
}
.about-cta .about-cta-inner .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.about-cta .about-cta-inner .about-cta-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.about-cta .about-cta-inner .about-cta-heading .text-accent {
  color: #75c5b5;
}
.about-cta .about-cta-inner .about-cta-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 48px;
}
.about-cta .about-cta-inner .about-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.contact-hero .contact-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: hero-zoom 8s ease-out forwards;
}
.contact-hero .contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 10, 16, 0.5) 0%, rgba(6, 10, 16, 0.72) 55%, rgba(6, 10, 16, 0.92) 100%), linear-gradient(135deg, rgba(7, 24, 18, 0.55) 0%, transparent 60%);
  z-index: 1;
}
.contact-hero .contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 180px 60px 140px;
  width: 100%;
}
.contact-hero .contact-hero-inner .section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 28px;
}
.contact-hero .contact-hero-inner .section-tag::before,
.contact-hero .contact-hero-inner .section-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.contact-hero .contact-hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  font-weight: 900;
  line-height: 0.97;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 28px;
}
.contact-hero .contact-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.82;
  max-width: 580px;
  margin: 0 auto 52px;
}
.contact-hero .contact-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.contact-hero .contact-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 44px;
}
.contact-hero .contact-hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.contact-hero .contact-hero-stat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.contact-hero .contact-hero-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}
.contact-hero .scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.contact-main {
  background: #f4f6f8;
  padding: 120px 60px;
  overflow: hidden;
}
.contact-main .contact-main-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: start;
}
.contact-info .contact-info-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 18px 0 24px;
}
.contact-info .contact-info-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(33, 42, 50, 0.6);
  margin-bottom: 44px;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(117, 197, 181, 0.1);
  border: 1px solid rgba(117, 197, 181, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: #75c5b5;
}
.contact-detail-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}
.contact-detail-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(33, 42, 50, 0.4);
}
.contact-detail-value {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #212a32;
}
.contact-enquiry-types {
  padding-top: 32px;
  border-top: 1px solid rgba(33, 42, 50, 0.08);
}
.contact-enquiry-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(33, 42, 50, 0.4);
  margin-bottom: 14px;
}
.contact-enquiry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-enq-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #212a32;
  background: #fff;
  border: 1px solid rgba(33, 42, 50, 0.12);
  border-radius: 50px;
  padding: 6px 16px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.contact-enq-tag:hover {
  background: #75c5b5;
  border-color: #75c5b5;
  color: #fff;
  cursor: default;
}
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 52px 52px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cf-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.cf-row--2 {
  flex-direction: row;
}
.cf-row--footer {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
  padding-top: 8px;
}
.cf-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(33, 42, 50, 0.55);
}
.cf-required {
  color: #75c5b5;
}
.cf-input {
  font-family: 'Barlow', sans-serif;
  font-size: 0.93rem;
  color: #212a32;
  background: #f8f9fb;
  border: 1.5px solid rgba(33, 42, 50, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  appearance: none;
}
.cf-input::placeholder {
  color: rgba(33, 42, 50, 0.3);
}
.cf-input:focus {
  border-color: #75c5b5;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(117, 197, 181, 0.12);
}
.cf-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2375c5b5' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}
.cf-select option {
  color: #212a32;
  background: #fff;
}
.cf-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}
.cf-privacy {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  color: rgba(33, 42, 50, 0.38);
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}
.cf-privacy a {
  color: #75c5b5;
  text-decoration: none;
}
.cf-privacy a:hover {
  text-decoration: underline;
}
.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.cf-submit svg {
  width: 18px;
  height: 18px;
}
.cf-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cf-success {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(117, 197, 181, 0.1);
  border: 1px solid rgba(117, 197, 181, 0.28);
  border-radius: 14px;
  padding: 22px 28px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.93rem;
  color: #212a32;
  font-weight: 500;
  margin-top: 8px;
}
.cf-success svg {
  width: 24px;
  height: 24px;
  stroke: #75c5b5;
  flex-shrink: 0;
}
.contact-markets {
  background: #212a32;
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}
.contact-markets::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.contact-markets .contact-markets-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-markets .contact-markets-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.contact-markets .contact-markets-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 18px 0 0;
}
.contact-markets .contact-markets-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.93rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}
.contact-markets .contact-markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-market-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.contact-market-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(117, 197, 181, 0.25);
  transform: translateY(-4px);
}
.contact-market-card .contact-market-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.contact-market-card .contact-market-flag {
  width: 36px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.contact-market-card .contact-market-badge {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #75c5b5;
  background: rgba(117, 197, 181, 0.1);
  border: 1px solid rgba(117, 197, 181, 0.18);
  border-radius: 50px;
  padding: 4px 12px;
}
.contact-market-card .contact-market-country {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px;
}
.contact-market-card .contact-market-city {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}
.contact-market-card .contact-market-city svg {
  width: 12px;
  height: 12px;
  stroke: #75c5b5;
  flex-shrink: 0;
}
.events-archive-hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.events-archive-hero .events-archive-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: hero-zoom 8s ease-out forwards;
}
.events-archive-hero .events-archive-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 10, 16, 0.52) 0%, rgba(6, 10, 16, 0.74) 55%, rgba(6, 10, 16, 0.94) 100%), linear-gradient(135deg, rgba(7, 24, 18, 0.55) 0%, transparent 60%);
  z-index: 1;
}
.events-archive-hero .events-archive-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 180px 60px 140px;
  width: 100%;
}
.events-archive-hero .events-archive-hero-inner .section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 28px;
}
.events-archive-hero .events-archive-hero-inner .section-tag::before,
.events-archive-hero .events-archive-hero-inner .section-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.events-archive-hero .events-archive-hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  font-weight: 900;
  line-height: 0.97;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 28px;
}
.events-archive-hero .events-archive-hero-heading .text-accent {
  color: #75c5b5;
}
.events-archive-hero .events-archive-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  max-width: 640px;
  margin: 0 auto 44px;
}
.events-archive-hero .events-archive-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.events-archive-hero .events-archive-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.events-archive-hero .events-archive-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
}
.events-archive-hero .events-archive-stat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 6px;
  white-space: nowrap;
}
.events-archive-hero .events-archive-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.events-archive-hero .scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.events-archive-section {
  background: #212a32;
  padding: 110px 60px 120px;
  position: relative;
  overflow: hidden;
}
.events-archive-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.events-archive-section .events-archive-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.events-archive-section .events-archive-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.events-archive-section .events-archive-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 18px;
}
.events-archive-section .events-archive-header .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.events-archive-section .events-archive-header-left {
  flex-shrink: 0;
}
.events-archive-section .events-archive-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.events-archive-section .events-archive-heading .text-accent {
  color: #75c5b5;
}
.events-archive-section .events-archive-header-right {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.events-archive-section .events-archive-subhead {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
  margin: 0;
}
.events-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.events-filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.events-filter-btn:hover {
  border-color: rgba(117, 197, 181, 0.4);
  color: #75c5b5;
}
.events-filter-btn.is-active {
  background: #75c5b5;
  border-color: #75c5b5;
  color: #212a32;
}
.events-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.events-archive-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}
.events-archive-card:hover {
  border-color: rgba(117, 197, 181, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(117, 197, 181, 0.06);
}
.events-archive-card:hover .eac-img-wrap {
  transform: scale(1.03);
}
.events-archive-card:hover .eac-cta span {
  transform: translateX(5px);
}
.events-archive-card.events-archive-card--featured {
  grid-column: span 2;
  flex-direction: row;
}
.events-archive-card.events-archive-card--featured .eac-img-wrap {
  width: 52%;
  flex-shrink: 0;
  min-height: 340px;
}
.events-archive-card.events-archive-card--featured .eac-body {
  padding: 40px 36px;
}
.events-archive-card.events-archive-card--featured .eac-title {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 16px;
}
.events-archive-card.events-archive-card--featured .eac-excerpt {
  display: block;
}
.eac-img-wrap {
  position: relative;
  min-height: 220px;
  background: linear-gradient(140deg, #0d2535 0%, #0a3028 60%, #0f3d35 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: block;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.eac-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(33, 42, 50, 0.2) 0%, rgba(10, 16, 20, 0.55) 100%);
}
.eac-num {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
.eac-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: rgba(117, 197, 181, 0.15);
  border: 1px solid rgba(117, 197, 181, 0.45);
  color: #75c5b5;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.eac-status {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.eac-status--upcoming {
  background: rgba(117, 197, 181, 0.2);
  border: 1px solid rgba(117, 197, 181, 0.5);
  color: #75c5b5;
}
.eac-status--past {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.45);
}
.eac-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.eac-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.eac-date,
.eac-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.eac-date svg,
.eac-loc svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.eac-date {
  color: #75c5b5;
}
.eac-date svg {
  stroke: #75c5b5;
}
.eac-loc {
  color: rgba(255, 255, 255, 0.38);
}
.eac-loc svg {
  stroke: rgba(255, 255, 255, 0.35);
}
.eac-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 0 0 12px;
  flex: 1;
}
.eac-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.eac-title a:hover {
  color: #75c5b5;
}
.eac-excerpt {
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  margin: 0 0 20px;
  display: none;
}
.eac-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.eac-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #75c5b5;
  text-decoration: none;
  transition: color 0.25s ease;
}
.eac-cta span {
  display: inline-block;
  transition: transform 0.3s ease;
}
.eac-cta:hover {
  color: #a0d7cc;
}
.eac-ext {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.25s ease;
}
.eac-ext svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
}
.eac-ext:hover {
  color: #fff;
}
.events-archive-pagination {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
.events-archive-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.events-archive-pagination li a,
.events-archive-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.events-archive-pagination li a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
}
.events-archive-pagination li a:hover {
  border-color: #75c5b5;
  color: #75c5b5;
  background: rgba(117, 197, 181, 0.08);
}
.events-archive-pagination li span.current {
  background: #75c5b5;
  color: #212a32;
  border: 1px solid #75c5b5;
}
.events-archive-pagination li span.dots {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.25);
}
.events-archive-empty {
  text-align: center;
  padding: 80px 40px;
}
.events-archive-empty .events-archive-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(117, 197, 181, 0.08);
  border: 1px solid rgba(117, 197, 181, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.events-archive-empty .events-archive-empty-icon svg {
  width: 36px;
  height: 36px;
  stroke: #75c5b5;
}
.events-archive-empty .events-archive-empty-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 14px;
}
.events-archive-empty .events-archive-empty-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 36px;
}
.event-single-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.event-single-hero .event-single-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--event-bg, linear-gradient(140deg, #0d2535 0%, #0a3028 60%, #0f3d35 100%));
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: hero-zoom 8s ease-out forwards;
}
.event-single-hero .event-single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 10, 16, 0.97) 0%, rgba(6, 10, 16, 0.72) 45%, rgba(6, 10, 16, 0.22) 100%), linear-gradient(135deg, rgba(7, 24, 18, 0.5) 0%, transparent 60%);
  z-index: 1;
}
.event-single-hero .event-single-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px 80px;
}
.event-single-hero .event-single-hero-inner .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 22px;
}
.event-single-hero .event-single-hero-inner .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.event-single-hero .scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 60px;
  z-index: 10;
}
.event-single-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.event-single-breadcrumb a {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.25s ease;
}
.event-single-breadcrumb a:hover {
  color: #75c5b5;
}
.event-single-breadcrumb span:not(.breadcrumb-current) {
  color: rgba(255, 255, 255, 0.2);
}
.event-single-breadcrumb .breadcrumb-current {
  color: rgba(255, 255, 255, 0.65);
}
.event-single-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 36px;
  max-width: 820px;
}
.event-single-meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.event-single-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px 0 0;
  margin-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.event-single-meta-item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.event-single-meta-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(117, 197, 181, 0.1);
  border: 1px solid rgba(117, 197, 181, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-single-meta-icon svg {
  width: 18px;
  height: 18px;
  stroke: #75c5b5;
}
.event-single-meta-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3px;
}
.event-single-meta-value {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.event-status-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.event-status-badge--upcoming {
  background: rgba(117, 197, 181, 0.15);
  border: 1px solid rgba(117, 197, 181, 0.4);
  color: #75c5b5;
}
.event-status-badge--past {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.45);
}
.event-single-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.event-single-content-section {
  background: #ffffff;
  padding: 100px 60px;
  position: relative;
}
.event-single-content-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.event-single-content-section .event-single-content-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.event-single-body {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(33, 42, 50, 0.72);
}
.event-single-body h2,
.event-single-body h3,
.event-single-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 36px 0 16px;
}
.event-single-body h2:first-child,
.event-single-body h3:first-child,
.event-single-body h4:first-child {
  margin-top: 0;
}
.event-single-body h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
}
.event-single-body h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
}
.event-single-body p {
  margin-bottom: 20px;
}
.event-single-body a {
  color: #75c5b5;
  text-decoration: underline;
  text-decoration-color: rgba(117, 197, 181, 0.4);
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}
.event-single-body a:hover {
  text-decoration-color: #75c5b5;
}
.event-single-body ul,
.event-single-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.event-single-body ul li,
.event-single-body ol li {
  margin-bottom: 8px;
}
.event-single-body img {
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(33, 42, 50, 0.12);
  margin: 24px 0;
}
.event-single-body--placeholder {
  color: rgba(33, 42, 50, 0.45);
  font-style: italic;
  padding: 48px;
  background: rgba(33, 42, 50, 0.03);
  border: 1px dashed rgba(33, 42, 50, 0.12);
  border-radius: 12px;
  text-align: center;
}
.event-single-back {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(33, 42, 50, 0.08);
}
.event-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(33, 42, 50, 0.5);
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}
.event-back-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.25s ease;
}
.event-back-link:hover {
  color: #75c5b5;
  gap: 14px;
}
.event-back-link:hover svg {
  transform: translateX(-3px);
}
.event-single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 110px;
}
.event-sidebar-card {
  background: rgba(33, 42, 50, 0.03);
  border: 1px solid rgba(33, 42, 50, 0.08);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.event-sidebar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #75c5b5;
  opacity: 0.5;
}
.event-sidebar-card--cta {
  background: #212a32;
  border-color: transparent;
}
.event-sidebar-card--cta::before {
  opacity: 1;
}
.event-sidebar-card--cta .event-sidebar-card-heading {
  color: #fff;
}
.event-sidebar-card--cta .event-sidebar-cta-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 24px;
}
.event-sidebar-card-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #75c5b5;
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.event-sidebar-card-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(117, 197, 181, 0.2);
  min-width: 20px;
}
.event-sidebar-detail-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.event-sidebar-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.event-sidebar-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(117, 197, 181, 0.08);
  border: 1px solid rgba(117, 197, 181, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.event-sidebar-detail-icon svg {
  width: 15px;
  height: 15px;
  stroke: #75c5b5;
}
.event-sidebar-detail-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 3px;
}
.event-sidebar-detail-value {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #212a32;
  line-height: 1.4;
}
.event-sidebar-ext-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  border: 1px solid rgba(33, 42, 50, 0.15);
  border-radius: 8px;
  padding: 12px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #212a32;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.event-sidebar-ext-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.event-sidebar-ext-btn:hover {
  background: #212a32;
  border-color: #212a32;
  color: #fff;
}
.event-share-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.event-share-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.event-share-btn:hover {
  opacity: 0.85;
  transform: translateX(3px);
}
.event-share-btn--linkedin {
  background: #0A66C2;
  color: #fff;
  border-radius: 8px;
}
.event-share-btn--twitter {
  background: #000000;
  color: #fff;
  border-radius: 8px;
}
.event-share-btn--facebook {
  background: #1877F2;
  color: #fff;
  border-radius: 8px;
}
.event-related {
  background: #212a32;
  padding: 100px 60px 110px;
  position: relative;
  overflow: hidden;
}
.event-related::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.event-related .event-related-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.event-related .event-related-header {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 52px;
}
.event-related .event-related-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 16px;
}
.event-related .event-related-header .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.event-related .event-related-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.event-related .event-related-heading .text-accent {
  color: #75c5b5;
}
.event-related .event-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.event-related .event-related-all {
  text-align: center;
}
.retails-hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.retails-hero .retails-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: hero-zoom 8s ease-out forwards;
}
.retails-hero .retails-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 10, 16, 0.52) 0%, rgba(6, 10, 16, 0.74) 55%, rgba(6, 10, 16, 0.94) 100%), linear-gradient(135deg, rgba(7, 24, 18, 0.55) 0%, transparent 60%);
  z-index: 1;
}
.retails-hero .retails-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 180px 60px 140px;
  width: 100%;
}
.retails-hero .retails-hero-inner .section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 28px;
}
.retails-hero .retails-hero-inner .section-tag::before,
.retails-hero .retails-hero-inner .section-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.retails-hero .retails-hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  font-weight: 900;
  line-height: 0.97;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 28px;
}
.retails-hero .retails-hero-heading .text-accent {
  color: #75c5b5;
}
.retails-hero .retails-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.58);
  max-width: 620px;
  margin: 0 auto 40px;
}
.retails-hero .retails-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.retails-hero .retails-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.retails-hero .retails-hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
}
.retails-hero .retails-hero-stat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 6px;
  white-space: nowrap;
}
.retails-hero .retails-hero-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.retails-hero .retails-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.retails-hero .scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.retails-intro {
  background: #ffffff;
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}
.retails-intro::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.09) 0%, transparent 70%);
  pointer-events: none;
}
.retails-intro::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.retails-intro .retails-intro-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.retails-intro .retails-intro-text .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 24px;
}
.retails-intro .retails-intro-text .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.retails-intro .retails-intro-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: #212a32;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}
.retails-intro .retails-intro-heading .text-accent {
  color: #75c5b5;
}
.retails-intro .retails-intro-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(33, 42, 50, 0.65);
  margin-bottom: 20px;
  max-width: 480px;
}
.retails-intro .retails-intro-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.retails-intro .retails-intro-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.retails-intro .retails-intro-img-wrap .retails-intro-img {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 0 0 0 3px rgba(117, 197, 181, 0.3), 0 0 0 7px rgba(117, 197, 181, 0.07), 0 28px 70px rgba(33, 42, 50, 0.2);
}
.retails-categories {
  background: #212a32;
  padding: 110px 60px 120px;
  overflow: hidden;
  position: relative;
}
.retails-categories::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.retails-categories::after {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.retails-categories .retails-categories-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.retails-categories .retails-categories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.retails-categories .retails-categories-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 18px;
}
.retails-categories .retails-categories-header .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.retails-categories .retails-categories-header-left {
  flex-shrink: 0;
}
.retails-categories .retails-categories-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.retails-categories .retails-categories-heading .text-accent {
  color: #75c5b5;
}
.retails-categories .retails-categories-header-right {
  max-width: 400px;
}
.retails-categories .retails-categories-subhead {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
  margin: 0;
}
.retails-categories .retails-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.retails-cat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  cursor: default;
}
.retails-cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #75c5b5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.retails-cat-card:hover {
  background: rgba(117, 197, 181, 0.07);
  border-color: rgba(117, 197, 181, 0.22);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 0 40px rgba(117, 197, 181, 0.06);
}
.retails-cat-card:hover::before {
  transform: scaleX(1);
}
.retails-cat-card:hover .retails-cat-icon svg {
  stroke: #75c5b5;
}
.retails-cat-card:hover .retails-cat-arrow {
  opacity: 1;
  transform: translateX(0);
}
.retails-cat-card .retails-cat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(117, 197, 181, 0.1);
  border: 1px solid rgba(117, 197, 181, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}
.retails-cat-card .retails-cat-icon svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255, 255, 255, 0.55);
  transition: stroke 0.3s ease;
}
.retails-cat-card .retails-cat-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}
.retails-cat-card .retails-cat-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.87rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 24px;
}
.retails-cat-card .retails-cat-arrow {
  font-size: 1.2rem;
  color: #75c5b5;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.retails-experience {
  background: #0d1822;
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}
.retails-experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.retails-experience::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.retails-experience .retails-experience-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.retails-experience .retails-experience-img {
  position: relative;
}
.retails-experience .retails-experience-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.retails-experience .retails-experience-img-wrap::before,
.retails-experience .retails-experience-img-wrap::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border-color: #75c5b5;
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}
.retails-experience .retails-experience-img-wrap::before {
  top: -6px;
  left: -6px;
  border-width: 3px 0 0 3px;
  border-radius: 8px 0 0 0;
}
.retails-experience .retails-experience-img-wrap::after {
  bottom: -6px;
  right: -6px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 8px 0;
}
.retails-experience .retails-experience-photo {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(117, 197, 181, 0.15), 0 32px 80px rgba(0, 0, 0, 0.5);
}
.retails-experience .retails-experience-text .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 24px;
}
.retails-experience .retails-experience-text .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.retails-experience .retails-experience-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.retails-experience .retails-experience-heading .text-accent {
  color: #75c5b5;
}
.retails-experience .retails-experience-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 32px;
  max-width: 480px;
}
.retails-experience .retails-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.retails-experience .retails-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.retails-experience .retails-feature-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.retails-experience .retails-feature-item .list-icon {
  background: #75c5b5;
  flex-shrink: 0;
}
.retails-experience .retails-feature-item .list-icon::after {
  border-right-color: #212a32;
  border-bottom-color: #212a32;
}
.retails-experience .retails-feature-item:hover {
  color: rgba(255, 255, 255, 0.95);
}
.retails-locations {
  background: #212a32;
  padding: 110px 60px 120px;
  position: relative;
  overflow: hidden;
}
.retails-locations::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.retails-locations .retails-locations-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.retails-locations .retails-locations-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.retails-locations .retails-locations-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 18px;
}
.retails-locations .retails-locations-header .section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.retails-locations .retails-locations-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 18px 0 0;
}
.retails-locations .retails-locations-heading .text-accent {
  color: #75c5b5;
}
.retails-locations .retails-locations-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.93rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}
.retails-locations .retails-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.retails-location-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.retails-location-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(117, 197, 181, 0.28);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}
.retails-location-card:hover .retails-location-link span {
  transform: translateX(4px);
}
.retails-location-card .retails-location-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.retails-location-card .retails-location-flag {
  width: 36px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.retails-location-card .retails-location-count {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #75c5b5;
  background: rgba(117, 197, 181, 0.1);
  border: 1px solid rgba(117, 197, 181, 0.18);
  border-radius: 50px;
  padding: 4px 12px;
  white-space: nowrap;
}
.retails-location-card .retails-location-country {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px;
}
.retails-location-card .retails-location-city {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 20px;
}
.retails-location-card .retails-location-city svg {
  width: 13px;
  height: 13px;
  stroke: rgba(117, 197, 181, 0.55);
  flex-shrink: 0;
}
.retails-location-card .retails-location-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #75c5b5;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.25s ease;
}
.retails-location-card .retails-location-link span {
  display: inline-block;
  transition: transform 0.25s ease;
}
.retails-location-card .retails-location-link:hover {
  gap: 10px;
}
.privacy-hero {
  position: relative;
  background: #212a32;
  overflow: hidden;
  padding: 110px 60px 90px;
}
.privacy-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.privacy-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.privacy-hero .privacy-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.privacy-hero .privacy-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 22px;
}
.privacy-hero .privacy-hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.privacy-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.privacy-hero h1 .text-accent {
  color: #75c5b5;
}
.privacy-hero .privacy-hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.privacy-hero .privacy-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.3px;
}
.privacy-hero .privacy-hero-meta-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
  stroke: #75c5b5;
}
.privacy-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px 120px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}
.privacy-toc {
  position: sticky;
  top: 110px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #edf0f2;
  padding: 32px 28px;
  order: 2;
}
.privacy-toc .privacy-toc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.privacy-toc .privacy-toc-title::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
  flex-shrink: 0;
}
.privacy-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc-counter;
}
.privacy-toc ol li {
  counter-increment: toc-counter;
  margin-bottom: 4px;
}
.privacy-toc ol li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  padding: 7px 10px;
  border-radius: 8px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.privacy-toc ol li a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #75c5b5;
  min-width: 24px;
  letter-spacing: 0.5px;
  padding-top: 1px;
}
.privacy-toc ol li a:hover,
.privacy-toc ol li a.is-active {
  background: rgba(117, 197, 181, 0.1);
  color: #2d2d2d;
}
.privacy-toc .privacy-toc-contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e8ebee;
}
.privacy-toc .privacy-toc-contact p {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
  line-height: 1.6;
}
.privacy-toc .privacy-toc-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #75c5b5;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.privacy-toc .privacy-toc-contact a:hover {
  color: #51b6a2;
}
.privacy-content {
  order: 1;
}
.privacy-intro {
  background: linear-gradient(135deg, rgba(117, 197, 181, 0.08) 0%, rgba(117, 197, 181, 0.03) 100%);
  border-left: 4px solid #75c5b5;
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin-bottom: 60px;
}
.privacy-intro p {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin: 0;
}
.policy-section {
  margin-bottom: 64px;
  scroll-margin-top: 120px;
}
.policy-section .policy-section-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #edf0f2;
}
.policy-section .policy-section-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #75c5b5;
  background: rgba(117, 197, 181, 0.1);
  border-radius: 8px;
  padding: 6px 12px;
  flex-shrink: 0;
  margin-top: 4px;
  min-width: 46px;
  text-align: center;
}
.policy-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: #212a32;
  letter-spacing: 0.3px;
  margin: 0;
  line-height: 1.2;
}
.policy-section p {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}
.policy-section p:last-child {
  margin-bottom: 0;
}
.policy-section strong {
  color: #2d2d2d;
  font-weight: 600;
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.data-card {
  background: #f8f9fa;
  border: 1px solid #edf0f2;
  border-radius: 12px;
  padding: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.data-card:hover {
  border-color: rgba(117, 197, 181, 0.4);
  box-shadow: 0 4px 16px rgba(117, 197, 181, 0.1);
}
.data-card .data-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(117, 197, 181, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.data-card .data-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: #75c5b5;
}
.data-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #212a32;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.data-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}
.purpose-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.purpose-list li {
  display: block;
  position: relative;
  padding: 12px 0 12px 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  border-bottom: 1px solid #f2f4f6;
}
.purpose-list li:last-child {
  border-bottom: none;
}
.purpose-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #75c5b5;
}
.cookie-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 12px;
  border: 1px solid #edf0f2;
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
}
.cookie-table thead {
  background: #212a32;
}
.cookie-table thead th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}
.cookie-table thead th:first-child {
  border-radius: 12px 0 0 0;
}
.cookie-table thead th:last-child {
  border-radius: 0 12px 0 0;
}
.cookie-table tbody tr {
  border-bottom: 1px solid #edf0f2;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.cookie-table tbody tr:last-child {
  border-bottom: none;
}
.cookie-table tbody tr:hover {
  background: #f8f9fa;
}
.cookie-table tbody td {
  padding: 14px 18px;
  color: #555;
  line-height: 1.6;
  vertical-align: top;
}
.cookie-table tbody td:first-child {
  font-weight: 600;
  color: #2d2d2d;
}
.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.right-card {
  background: #fff;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.right-card:hover {
  border-color: #75c5b5;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(117, 197, 181, 0.15);
}
.right-card .right-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(117, 197, 181, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.right-card .right-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #75c5b5;
}
.right-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #212a32;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.right-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}
.policy-highlight {
  background: #212a32;
  border-radius: 14px;
  padding: 28px 32px;
  margin: 28px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.policy-highlight .policy-highlight-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(117, 197, 181, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.policy-highlight .policy-highlight-icon svg {
  width: 20px;
  height: 20px;
  stroke: #75c5b5;
}
.policy-highlight .policy-highlight-body p {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0;
}
.policy-highlight .policy-highlight-body p strong {
  color: #fff !important;
}
.privacy-contact-block {
  background: linear-gradient(135deg, #1a2229 0%, #212a32 100%);
  border-radius: 20px;
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.privacy-contact-block::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 197, 181, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.privacy-contact-block .privacy-contact-block-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 18px;
}
.privacy-contact-block .privacy-contact-block-tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.privacy-contact-block h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}
.privacy-contact-block h2 .text-accent {
  color: #75c5b5;
}
.privacy-contact-block p {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 32px;
}
.privacy-contact-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.privacy-contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
}
.privacy-contact-detail svg {
  width: 18px;
  height: 18px;
  stroke: #75c5b5;
  flex-shrink: 0;
}
.privacy-contact-detail span {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.privacy-contact-detail a {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #75c5b5;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.privacy-contact-detail a:hover {
  color: #51b6a2;
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Media Query (Min)
|-------------------------------------------------------------------------------------------------------------------------------
| Small devices (landscape phones, 576px and up),
| Medium devices (tablets, 768px and up),
| Large devices (desktops, 992px and up),
| Extra large devices (large desktops, 1200px and up),
| and other standard screen sizes (414px, 375px and 320px and up - Note: get from browser)
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Media Query (Max)
|-------------------------------------------------------------------------------------------------------------------------------
| Large devices (desktops, less than 1200px), 
| Medium devices (tablets, less than 992px), 
| Small devices (landscape phones, less than 768px), 
| Extra small devices (portrait phones, less than 576px), 
| and other standard screen sizes (less than 414px, 375px and 320px - Note: get from browser)
|-------------------------------------------------------------------------------------------------------------------------------
|
*/
@media (max-width: 1199.98px) {
  .site-header .header-inner {
    padding: 0 40px;
  }
  .hero-swiper .slide-content {
    padding: 0 40px;
  }
  .home-about {
    padding: 100px 40px;
  }
  .home-about .about-container {
    gap: 60px;
  }
  .home-events {
    padding: 90px 40px 100px;
  }
  .home-global {
    padding: 100px 40px;
  }
  .home-global .global-markets {
    grid-template-columns: repeat(5, 1fr);
  }
  .home-brands .brands-header {
    padding: 0 40px 48px;
  }
  .home-gallery .gallery-container {
    padding: 0 40px;
  }
  .about-hero .about-hero-inner {
    padding: 160px 40px 120px;
  }
  .about-mission {
    padding: 100px 40px;
  }
  .about-values {
    padding: 100px 40px;
  }
  .about-timeline {
    padding: 100px 40px;
  }
  .about-stats-section {
    padding: 60px 40px;
  }
  .about-cta {
    padding: 120px 40px;
  }
  .brands-hero .brands-hero-inner {
    padding: 160px 40px 120px;
  }
  .brands-page-section {
    padding: 100px 40px;
  }
  .privacy-hero {
    padding: 90px 40px 70px;
  }
  .privacy-layout {
    padding: 60px 40px 80px;
  }
  .contact-hero .contact-hero-inner {
    padding: 160px 40px 120px;
  }
  .contact-main {
    padding: 100px 40px;
  }
  .contact-markets {
    padding: 100px 40px;
  }
  .retails-hero .retails-hero-inner {
    padding: 160px 40px 120px;
  }
  .retails-intro {
    padding: 100px 40px;
  }
  .retails-categories {
    padding: 100px 40px;
  }
  .retails-experience {
    padding: 100px 40px;
  }
  .retails-locations {
    padding: 100px 40px;
  }
  .shop-hero .shop-hero-inner {
    padding: 160px 40px 120px;
  }
  .shop-online-section {
    padding: 100px 40px;
  }
  .shop-stores-section {
    padding: 100px 40px;
  }
  .events-archive-hero .events-archive-hero-inner {
    padding: 160px 40px 120px;
  }
  .events-archive-section {
    padding: 90px 40px 100px;
  }
  .event-single-hero .event-single-hero-inner {
    padding: 0 40px 60px;
  }
  .event-single-content-section {
    padding: 80px 40px;
  }
  .event-related {
    padding: 80px 40px 90px;
  }
  .footer-cta-inner {
    padding: 0 40px;
  }
  .footer-container {
    padding: 0 40px;
  }
  .footer-grid {
    gap: 36px;
  }
}
@media (max-width: 991.98px) {
  .scroll-indicator {
    display: none !important;
  }
  .site-header .header-inner {
    padding: 0 30px;
    height: 70px;
  }
  .site-nav.stellarnav {
    display: none !important;
    visibility: hidden !important;
  }
  .nav-toggle {
    display: flex !important;
    visibility: visible !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    background: #212a32 !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10005 !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
  }
  .nav-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #fff !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    transform-origin: center !important;
    pointer-events: none !important;
  }
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }
  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }
  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }
  .mobile-nav-overlay {
    display: block !important;
    visibility: visible !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.52) !important;
    z-index: 9998 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
  }
  .mobile-nav-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .mobile-nav {
    display: block !important;
    visibility: visible !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 280px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    background: #212a32 !important;
    z-index: 9999 !important;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    padding: 0 !important;
  }
  .mobile-nav.active {
    transform: translateX(0) !important;
  }
  .mobile-nav .mobile-nav-close {
    display: block !important;
    width: 44px !important;
    height: 44px !important;
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-size: 32px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    margin: 16px 16px 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
    opacity: 0.7;
    transition: opacity 0.2s ease !important;
  }
  .mobile-nav .mobile-nav-close:hover {
    opacity: 1 !important;
  }
  .mobile-nav .mobile-nav-list {
    list-style: none !important;
    margin: 16px 0 0 !important;
    padding: 0 !important;
  }
  .mobile-nav .mobile-nav-list > li {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  }
  .mobile-nav .mobile-nav-list > li > a {
    display: block !important;
    padding: 16px 28px !important;
    color: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
  }
  .mobile-nav .mobile-nav-list > li > a:hover {
    color: #75c5b5 !important;
  }
  .mobile-nav .mobile-nav-list > li:last-child {
    border-bottom: none !important;
    padding: 24px 28px !important;
  }
  .mobile-nav .mobile-nav-list > li:last-child > a {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 28px !important;
    background: #75c5b5 !important;
    color: #212a32 !important;
    border-radius: 50px !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
  }
  body.mobile-nav-open {
    overflow: hidden !important;
  }
  .hero-swiper {
    height: 88vh;
    min-height: 480px;
  }
  .hero-swiper .slide-content {
    padding: 0 40px;
    max-width: 680px;
  }
  .home-about {
    padding: 80px 40px;
  }
  .home-about .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .home-about .about-text .about-desc {
    max-width: 100%;
  }
  .home-about .about-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .home-about .about-visual {
    flex: 1 1 380px;
  }
  .home-about .about-visual .about-img-wrap .about-img {
    height: 340px;
  }
  .home-about .about-stats {
    flex: 1 1 280px;
  }
  .home-events {
    padding: 80px 40px 90px;
  }
  .home-events .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .home-events .events-header-right {
    max-width: 100%;
  }
  .home-events .events-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 16px;
  }
  .home-events .event-card--featured {
    grid-row: auto;
    min-height: 420px;
  }
  .home-events .event-card--featured .event-card-img {
    height: 100%;
  }
  .home-events .event-card:not(.event-card--featured) {
    flex-direction: row;
  }
  .home-events .event-card:not(.event-card--featured) .event-card-img {
    width: 40%;
    height: auto;
  }
  .home-global {
    padding: 90px 40px;
  }
  .home-global .global-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .home-global .global-header-right {
    max-width: 100%;
  }
  .home-global .global-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-global .global-markets {
    grid-template-columns: repeat(4, 1fr);
  }
  .home-brands .brands-header {
    padding: 0 30px 44px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .home-brands .brands-header .brands-header-right {
    max-width: 100%;
  }
  .home-gallery {
    padding: 90px 0 80px;
  }
  .home-gallery .gallery-container {
    padding: 0 30px;
  }
  .home-gallery .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .home-gallery .gallery-header-right {
    max-width: 100%;
  }
  .about-hero .about-hero-inner {
    padding: 140px 40px 100px;
  }
  .about-mission {
    padding: 90px 40px;
  }
  .about-mission .about-mission-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-mission .about-mission-text .about-mission-desc {
    max-width: 100%;
  }
  .about-mission .about-mission-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .about-mission .about-mission-img-wrap {
    flex: 1 1 360px;
  }
  .about-mission .about-mission-img-wrap .about-mission-img {
    height: 360px;
  }
  .about-mission .about-stats {
    flex: 1 1 260px;
  }
  .about-values {
    padding: 90px 40px;
  }
  .about-values .about-values-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .about-values .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-timeline {
    padding: 90px 40px;
  }
  .about-stats-section {
    padding: 60px 40px;
  }
  .about-stats-section .about-stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-cta {
    padding: 110px 40px;
  }
  .privacy-layout {
    grid-template-columns: 1fr;
    padding: 50px 40px 70px;
    gap: 0;
  }
  .privacy-toc {
    position: relative;
    top: 0;
    order: -1;
    margin-bottom: 40px;
  }
  .privacy-toc ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-hero .brands-hero-inner {
    padding: 140px 40px 100px;
  }
  .brands-hero .brands-hero-inner .brands-hero-stat {
    padding: 0 30px;
  }
  .brands-page-section {
    padding: 90px 40px;
  }
  .brands-page-section .brands-page-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
  .brands-page-section .brands-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-hero .contact-hero-inner {
    padding: 140px 40px 100px;
  }
  .contact-hero .contact-hero-inner .contact-hero-stat {
    padding: 0 30px;
  }
  .contact-main {
    padding: 90px 40px;
  }
  .contact-main .contact-main-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-form-wrap {
    padding: 40px;
  }
  .contact-markets {
    padding: 90px 40px;
  }
  .contact-markets .contact-markets-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 44px;
  }
  .contact-markets .contact-markets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .retails-hero .retails-hero-inner {
    padding: 140px 40px 100px;
  }
  .retails-hero .retails-hero-inner .retails-hero-stat {
    padding: 0 30px;
  }
  .retails-intro {
    padding: 90px 40px;
  }
  .retails-intro .retails-intro-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .retails-categories {
    padding: 90px 40px;
  }
  .retails-categories .retails-categories-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 44px;
  }
  .retails-categories .retails-categories-header .retails-categories-header-right {
    max-width: 100%;
  }
  .retails-experience {
    padding: 90px 40px;
  }
  .retails-experience .retails-experience-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .retails-locations {
    padding: 90px 40px;
  }
  .retails-locations .retails-locations-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 44px;
  }
  .retails-locations .retails-locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-hero .shop-hero-inner {
    padding: 140px 40px 100px;
  }
  .shop-hero .shop-hero-inner .shop-hero-heading {
    font-size: clamp(3rem, 7vw, 5.5rem);
  }
  .shop-online-section {
    padding: 90px 40px;
  }
  .shop-online-section .shop-section-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
  }
  .shop-online-section .shop-online-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-stores-section {
    padding: 90px 40px;
  }
  .shop-stores-section .shop-section-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
  }
  .shop-stores-section .shop-stores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-archive-hero .events-archive-hero-inner {
    padding: 140px 40px 100px;
  }
  .events-archive-hero .events-archive-hero-inner .events-archive-stat {
    padding: 0 28px;
  }
  .events-archive-section {
    padding: 90px 40px;
  }
  .events-archive-section .events-archive-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 44px;
  }
  .events-archive-section .events-archive-header .events-archive-header-right {
    max-width: 100%;
  }
  .events-archive-section .events-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .event-single-hero .event-single-hero-inner {
    padding: 0 40px 50px;
  }
  .event-single-hero .event-single-hero-inner .event-single-heading {
    font-size: clamp(2.6rem, 5vw, 4rem);
  }
  .event-single-content-section {
    padding: 80px 40px;
  }
  .event-single-content-section .event-single-content-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .event-single-sidebar {
    position: static;
  }
  .event-related {
    padding: 80px 40px 90px;
  }
  .event-related .event-related-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .event-related .event-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cta-band {
    padding: 56px 0;
  }
  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 0 40px;
  }
  .footer-cta-actions {
    flex-wrap: wrap;
  }
  .footer-body {
    padding: 60px 0 48px;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-col--contact {
    grid-column: 1 / -1;
  }
  .footer-newsletter {
    max-width: 440px;
  }
  .home-brands .brands-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .site-header .header-inner {
    padding: 0 24px;
    height: 64px;
  }
  .site-header .site-logo .main-logo {
    height: 44px;
  }
  .hero-swiper {
    height: 82vh;
    min-height: 420px;
  }
  .hero-swiper .slide-content {
    padding: 0 24px;
    max-width: 100%;
  }
  .hero-swiper .slide-desc {
    display: none;
  }
  .home-about {
    padding: 70px 24px;
  }
  .home-about .about-right {
    flex-direction: column;
  }
  .home-about .about-visual .about-img-wrap .about-img {
    height: 300px;
  }
  .home-events {
    padding: 70px 24px 80px;
  }
  .home-events .events-grid {
    gap: 14px;
  }
  .home-events .event-card--featured {
    min-height: 380px;
  }
  .home-events .event-card:not(.event-card--featured) {
    flex-direction: column;
  }
  .home-events .event-card:not(.event-card--featured) .event-card-img {
    width: 100%;
    height: 200px;
  }
  .home-global {
    padding: 70px 24px;
  }
  .home-global .global-stats .gstat {
    padding: 26px 18px;
  }
  .home-global .global-markets {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .home-brands .brands-header {
    padding: 0 24px 40px;
    gap: 24px;
  }
  .home-gallery {
    padding: 70px 0 60px;
  }
  .home-gallery .gallery-container {
    padding: 0 24px;
  }
  .home-gallery .gallery-track {
    height: 280px !important;
  }
  .home-gallery .gallery-track .gallery-track-inner {
    height: 280px;
  }
  .home-gallery .gallery-item {
    width: 280px !important;
    height: 280px !important;
  }
  .shop-hero,
  .events-archive-hero,
  .about-hero,
  .brands-hero,
  .contact-hero,
  .retails-hero,
  .event-single-hero {
    min-height: 0;
    height: auto;
  }
  .about-hero .about-hero-inner {
    padding: 120px 24px 80px;
  }
  .about-hero .about-hero-inner .about-hero-heading {
    font-size: clamp(3rem, 8vw, 5rem);
  }
  .about-hero .about-hero-inner .about-hero-sub {
    font-size: 0.95rem;
  }
  .about-mission {
    padding: 70px 24px;
  }
  .about-mission .about-mission-right {
    flex-direction: column;
  }
  .about-mission .about-mission-img-wrap .about-mission-img {
    height: 300px;
  }
  .about-values {
    padding: 70px 24px;
  }
  .about-values .about-values-grid {
    gap: 16px;
  }
  .about-timeline {
    padding: 70px 24px;
  }
  .about-timeline .about-timeline-track .timeline-line {
    left: 8px;
    transform: none;
  }
  .about-timeline .timeline-item {
    width: 100%;
    text-align: left !important;
  }
  .about-timeline .timeline-item.timeline-item--left,
  .about-timeline .timeline-item.timeline-item--right {
    margin-left: 32px;
    margin-right: 0;
    text-align: left;
  }
  .about-timeline .timeline-item.timeline-item--left .timeline-dot,
  .about-timeline .timeline-item.timeline-item--right .timeline-dot {
    left: -28px !important;
    right: auto !important;
  }
  .about-stats-section {
    padding: 50px 24px;
  }
  .about-stats-section .about-stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-stats-section .about-stats-container .gstat {
    padding: 20px 16px;
  }
  .about-stats-section .about-stats-container .gstat:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .gn-section .gn-heading {
    left: 24px;
    top: 24px;
  }
  .about-cta {
    padding: 90px 24px;
  }
  .brands-hero .brands-hero-inner {
    padding: 120px 24px 80px;
  }
  .brands-hero .brands-hero-inner .brands-hero-heading {
    font-size: clamp(3rem, 8vw, 5rem);
  }
  .brands-hero .brands-hero-inner .brands-hero-sub {
    font-size: 0.95rem;
  }
  .brands-hero .brands-hero-inner .brands-hero-stat {
    padding: 0 22px;
  }
  .brands-page-section {
    padding: 70px 24px;
  }
  .brands-page-section .brands-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .brands-page-section .brand-page-card .brand-page-card-logo {
    height: 220px;
    padding: 28px;
  }
  .contact-hero .contact-hero-inner {
    padding: 120px 24px 80px;
  }
  .contact-hero .contact-hero-inner .contact-hero-heading {
    font-size: clamp(3rem, 8vw, 5rem);
  }
  .contact-hero .contact-hero-inner .contact-hero-stat {
    padding: 0 22px;
  }
  .contact-main {
    padding: 70px 24px;
  }
  .contact-form-wrap {
    padding: 32px 28px;
  }
  .cf-row--2 {
    flex-direction: column;
    gap: 0;
  }
  .contact-markets {
    padding: 70px 24px;
  }
  .contact-markets .contact-markets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .retails-hero .retails-hero-inner {
    padding: 120px 24px 80px;
  }
  .retails-hero .retails-hero-inner .retails-hero-heading {
    font-size: clamp(3rem, 8vw, 5rem);
  }
  .retails-hero .retails-hero-inner .retails-hero-sub {
    font-size: 0.95rem;
  }
  .retails-hero .retails-hero-inner .retails-hero-stat {
    padding: 0 22px;
  }
  .retails-hero .retails-hero-inner .retails-hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .retails-intro {
    padding: 70px 24px;
  }
  .retails-intro .retails-intro-img-wrap .retails-intro-img {
    height: 300px;
  }
  .retails-categories {
    padding: 70px 24px;
  }
  .retails-categories .retails-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .retails-experience {
    padding: 70px 24px;
  }
  .retails-experience .retails-experience-photo {
    height: 380px;
  }
  .retails-locations {
    padding: 70px 24px;
  }
  .retails-locations .retails-locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .shop-hero .shop-hero-inner {
    padding: 120px 24px 80px;
  }
  .shop-hero .shop-hero-inner .shop-hero-heading {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }
  .shop-hero .shop-hero-inner .shop-hero-sub {
    font-size: 0.95rem;
  }
  .shop-hero .shop-hero-inner .shop-hero-tabs {
    gap: 10px;
  }
  .shop-hero .shop-hero-inner .shop-tab-btn {
    padding: 14px 26px;
    font-size: 11px;
  }
  .shop-online-section {
    padding: 70px 24px;
  }
  .shop-online-section .shop-online-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .shop-stores-section {
    padding: 70px 24px;
  }
  .shop-stores-section .shop-stores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .events-archive-hero .events-archive-hero-inner {
    padding: 120px 24px 80px;
  }
  .events-archive-hero .events-archive-hero-inner .events-archive-hero-heading {
    font-size: clamp(3rem, 8vw, 5rem);
  }
  .events-archive-hero .events-archive-hero-inner .events-archive-hero-sub {
    font-size: 0.95rem;
  }
  .events-archive-hero .events-archive-hero-inner .events-archive-stat {
    padding: 0 20px;
  }
  .events-archive-section {
    padding: 70px 24px;
  }
  .events-archive-section .events-archive-grid {
    gap: 16px;
  }
  .event-single-hero .event-single-hero-inner {
    padding: 0 24px 40px;
  }
  .event-single-hero .event-single-hero-inner .event-single-heading {
    font-size: clamp(2.4rem, 7vw, 3.6rem);
  }
  .event-single-meta-item {
    padding-right: 20px;
    margin-right: 20px;
  }
  .event-single-content-section {
    padding: 70px 24px;
  }
  .event-related {
    padding: 70px 24px 80px;
  }
  .event-related .event-related-grid {
    gap: 16px;
  }
  .privacy-hero {
    padding: 70px 24px 50px;
  }
  .privacy-layout {
    padding: 36px 24px 60px;
  }
  .privacy-toc ol {
    grid-template-columns: 1fr;
  }
  .data-grid {
    grid-template-columns: 1fr;
  }
  .rights-grid {
    grid-template-columns: 1fr;
  }
  .policy-highlight {
    flex-direction: column;
    gap: 14px;
    padding: 22px 20px;
  }
  .privacy-contact-block {
    padding: 36px 24px;
  }
  .privacy-contact-details {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer-cta-band {
    padding: 48px 0;
  }
  .footer-cta-inner {
    padding: 0 24px;
    gap: 28px;
  }
  .footer-cta-heading {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }
  .footer-body {
    padding: 52px 0 40px;
  }
  .footer-container {
    padding: 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
  .footer-col--contact {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    padding: 16px 0;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 575.98px) {
  .site-header .header-inner {
    padding: 0 20px;
    height: 60px;
  }
  .site-header .site-logo .main-logo {
    height: 40px;
  }
  .site-nav.stellarnav.mobile > ul.menu {
    width: 260px;
  }
  .hero-swiper {
    height: 78vh;
    min-height: 380px;
  }
  .hero-swiper .slide-content {
    padding: 0 20px;
  }
  .hero-swiper .slide-heading {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .hero-swiper .slide-sub {
    font-size: 0.9rem;
  }
  .hero-swiper .slide-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .home-marquee .marquee-inner {
    animation-duration: 18s;
  }
  .home-about {
    padding: 60px 20px;
  }
  .home-about .about-container {
    gap: 40px;
  }
  .home-about .about-visual .about-img-wrap .about-img {
    height: 260px;
  }
  .home-about .about-visual .about-img-wrap .about-badge {
    bottom: -12px;
    right: -8px;
    padding: 14px 18px;
  }
  .home-about .about-visual .about-img-wrap .about-badge .badge-number {
    font-size: 2.2rem;
  }
  .home-about .about-stats .stat-card {
    padding: 20px 16px;
  }
  .home-about .about-stats .stat-card .stat-number {
    font-size: 2rem;
  }
  .home-events {
    padding: 60px 20px 70px;
  }
  .home-events .events-heading {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .home-events .events-grid {
    gap: 12px;
  }
  .home-events .event-card--featured {
    min-height: 340px;
  }
  .home-events .event-card:not(.event-card--featured) .event-card-img {
    height: 180px;
  }
  .home-global {
    padding: 60px 20px;
  }
  .home-global .global-heading {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .home-global .global-stats {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 14px;
  }
  .home-global .global-stats .gstat {
    padding: 22px 14px;
  }
  .home-global .global-stats .gstat-num {
    font-size: 1.8rem;
  }
  .home-global .global-markets {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .home-brands {
    padding: 70px 0;
  }
  .home-brands .brands-header {
    padding: 0 20px 36px;
    gap: 20px;
  }
  .home-brands .brands-heading {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .home-gallery {
    padding: 60px 0 50px;
  }
  .home-gallery .gallery-container {
    padding: 0 20px;
  }
  .home-gallery .gallery-heading {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .home-gallery .gallery-track {
    height: 240px !important;
  }
  .home-gallery .gallery-track .gallery-track-inner {
    height: 240px;
  }
  .home-gallery .gallery-item {
    width: 240px !important;
    height: 240px !important;
  }
  .shop-hero,
  .events-archive-hero,
  .about-hero,
  .brands-hero,
  .contact-hero,
  .retails-hero,
  .event-single-hero {
    min-height: 0;
    height: auto;
  }
  .about-hero .about-hero-inner {
    padding: 100px 20px 70px;
  }
  .about-hero .about-hero-inner .about-hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .about-mission {
    padding: 60px 20px;
  }
  .about-mission .about-mission-img-wrap .about-mission-img {
    height: 260px;
  }
  .about-mission .about-mission-img-wrap .about-badge {
    bottom: 16px;
    left: 16px;
    padding: 12px 16px;
  }
  .about-mission .about-mission-img-wrap .about-badge .badge-number {
    font-size: 2.2rem;
  }
  .about-values {
    padding: 60px 20px;
  }
  .about-values .about-values-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-timeline {
    padding: 60px 20px;
  }
  .about-timeline .about-timeline-header {
    margin-bottom: 50px;
  }
  .about-timeline .timeline-item .timeline-content {
    padding: 22px 20px;
  }
  .about-stats-section {
    padding: 50px 20px;
  }
  .about-stats-section .about-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats-section .about-stats-container .gstat {
    padding: 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .about-stats-section .about-stats-container .gstat:first-child {
    border-left: none;
  }
  .about-stats-section .about-stats-container .gstat:nth-child(even) {
    border-right: none;
  }
  .about-stats-section .about-stats-container .gstat:last-child {
    grid-column: 1 / -1;
    border-bottom: none;
    border-right: none;
  }
  .about-cta {
    padding: 70px 20px;
  }
  .about-cta .about-cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .brands-hero .brands-hero-inner {
    padding: 100px 20px 70px;
  }
  .brands-hero .brands-hero-inner .brands-hero-heading {
    font-size: clamp(2.6rem, 9vw, 4rem);
  }
  .brands-hero .brands-hero-inner .brands-hero-meta {
    flex-wrap: wrap;
    gap: 8px 0;
  }
  .brands-hero .brands-hero-inner .brands-hero-stat {
    padding: 8px 20px;
  }
  .brands-hero .brands-hero-inner .brands-hero-divider {
    display: none;
  }
  .brands-page-section {
    padding: 60px 20px;
  }
  .brands-page-section .brands-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .brands-page-section .brand-page-card .brand-page-card-logo {
    height: 200px;
    padding: 24px;
  }
  .contact-hero .contact-hero-inner {
    padding: 100px 20px 70px;
  }
  .contact-hero .contact-hero-inner .contact-hero-heading {
    font-size: clamp(2.6rem, 9vw, 4rem);
  }
  .contact-hero .contact-hero-inner .contact-hero-meta {
    flex-wrap: wrap;
    gap: 8px 0;
  }
  .contact-hero .contact-hero-inner .contact-hero-stat {
    padding: 8px 20px;
  }
  .contact-hero .contact-hero-inner .contact-hero-divider {
    display: none;
  }
  .contact-main {
    padding: 60px 20px;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .cf-row--footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .cf-row--footer .cf-privacy {
    max-width: 100%;
  }
  .cf-row--footer .cf-submit {
    width: 100%;
    justify-content: center;
  }
  .contact-markets {
    padding: 60px 20px;
  }
  .contact-markets .contact-markets-grid {
    gap: 12px;
  }
  .retails-hero .retails-hero-inner {
    padding: 100px 20px 70px;
  }
  .retails-hero .retails-hero-inner .retails-hero-heading {
    font-size: clamp(2.6rem, 9vw, 4rem);
  }
  .retails-hero .retails-hero-inner .retails-hero-meta {
    flex-wrap: wrap;
    gap: 8px 0;
  }
  .retails-hero .retails-hero-inner .retails-hero-stat {
    padding: 8px 20px;
  }
  .retails-hero .retails-hero-inner .retails-hero-divider {
    display: none;
  }
  .retails-intro {
    padding: 60px 20px;
  }
  .retails-intro .retails-intro-img-wrap .retails-intro-img {
    height: 260px;
  }
  .retails-intro .retails-intro-img-wrap .about-badge {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
  }
  .retails-intro .retails-intro-img-wrap .about-badge .badge-number {
    font-size: 2.2rem;
  }
  .retails-intro .about-stats .stat-card {
    padding: 18px 14px;
  }
  .retails-categories {
    padding: 60px 20px;
  }
  .retails-categories .retails-cat-card {
    padding: 28px 22px;
  }
  .retails-experience {
    padding: 60px 20px;
  }
  .retails-experience .retails-experience-photo {
    height: 300px;
  }
  .retails-locations {
    padding: 60px 20px;
  }
  .retails-locations .retails-locations-grid {
    gap: 12px;
  }
  .shop-hero .shop-hero-inner {
    padding: 100px 20px 70px;
  }
  .shop-hero .shop-hero-inner .shop-hero-heading {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
  }
  .shop-hero .shop-hero-inner .shop-hero-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .shop-hero .shop-hero-inner .shop-tab-btn {
    width: 100%;
    justify-content: center;
  }
  .shop-online-section {
    padding: 60px 20px;
  }
  .shop-online-section .shop-online-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .shop-stores-section {
    padding: 60px 20px;
  }
  .shop-stores-section .shop-stores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .shop-store-card .shop-store-card-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .shop-store-count {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }
  .events-archive-hero .events-archive-hero-inner {
    padding: 100px 20px 70px;
  }
  .events-archive-hero .events-archive-hero-inner .events-archive-hero-heading {
    font-size: clamp(2.6rem, 9vw, 4rem);
  }
  .events-archive-hero .events-archive-hero-inner .events-archive-hero-meta {
    flex-wrap: wrap;
    gap: 8px 0;
  }
  .events-archive-hero .events-archive-hero-inner .events-archive-stat {
    padding: 8px 18px;
  }
  .events-archive-hero .events-archive-hero-inner .events-archive-divider {
    display: none;
  }
  .events-archive-section {
    padding: 60px 20px;
  }
  .events-archive-section .events-archive-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .event-single-hero .event-single-hero-inner {
    padding: 0 20px 36px;
  }
  .event-single-hero .event-single-hero-inner .event-single-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .event-single-meta-item {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }
  .event-single-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .event-single-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .event-single-content-section {
    padding: 60px 20px;
  }
  .event-related {
    padding: 60px 20px 70px;
  }
  .event-related .event-related-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-cta-band {
    padding: 44px 0;
  }
  .footer-cta-inner {
    padding: 0 20px;
    gap: 24px;
  }
  .footer-cta-heading {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .footer-btn-primary,
  .footer-btn-outline {
    padding: 14px 24px;
    text-align: center;
    width: 100%;
    display: block;
  }
  .footer-body {
    padding: 44px 0 36px;
  }
  .footer-container {
    padding: 0 20px;
  }
  .footer-brand-desc {
    font-size: 0.83rem;
  }
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
  .footer-legal {
    gap: 18px;
    justify-content: center;
  }
  .home-about .about-heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .home-brands .brands-cta-inner {
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 413.98px) {
  .site-header .header-inner {
    padding: 0 16px;
  }
  .site-header .site-logo .main-logo {
    height: 38px;
  }
  .site-nav.stellarnav.mobile > ul.menu {
    width: 240px;
  }
  .hero-swiper {
    height: 72vh;
    min-height: 340px;
  }
  .hero-swiper .slide-content {
    padding: 0 16px;
  }
  .hero-swiper .slide-heading {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
  .home-about {
    padding: 50px 16px;
  }
  .home-about .about-visual .about-img-wrap .about-img {
    height: 240px;
  }
  .home-about .about-stats .stat-card {
    padding: 16px 12px;
  }
  .home-events {
    padding: 50px 16px 60px;
  }
  .home-global {
    padding: 50px 16px;
  }
  .home-global .global-markets {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .home-global .global-stats .gstat {
    padding: 18px 10px;
  }
  .home-brands .brands-header {
    padding: 0 16px 30px;
  }
  .home-gallery .gallery-container {
    padding: 0 16px;
  }
  .home-gallery .gallery-track {
    height: 200px !important;
  }
  .home-gallery .gallery-track .gallery-track-inner {
    height: 200px;
  }
  .home-gallery .gallery-item {
    width: 200px !important;
    height: 200px !important;
  }
  .about-hero .about-hero-inner {
    padding: 90px 16px 60px;
  }
  .about-mission {
    padding: 50px 16px;
  }
  .about-values {
    padding: 50px 16px;
  }
  .about-timeline {
    padding: 50px 16px;
  }
  .about-stats-section {
    padding: 40px 16px;
  }
  .about-cta {
    padding: 60px 16px;
  }
  .about-cta .about-cta-btns {
    align-items: stretch;
  }
  .about-cta .about-cta-btns a {
    text-align: center;
  }
  .gn-section .gn-heading {
    left: 16px;
    top: 16px;
  }
  .brands-hero .brands-hero-inner {
    padding: 90px 16px 60px;
  }
  .brands-page-section {
    padding: 50px 16px;
  }
  .brands-page-section .brands-page-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .privacy-layout {
    padding: 28px 16px 50px;
  }
  .privacy-intro {
    padding: 20px;
  }
  .policy-section {
    margin-bottom: 44px;
  }
  .privacy-contact-block {
    padding: 28px 16px;
    border-radius: 14px;
  }
  .cookie-table {
    font-size: 13px;
  }
  .cookie-table thead th,
  .cookie-table tbody td {
    padding: 10px 12px;
  }
  .contact-hero .contact-hero-inner {
    padding: 90px 16px 60px;
  }
  .contact-main {
    padding: 50px 16px;
  }
  .contact-form-wrap {
    padding: 24px 16px;
  }
  .contact-markets {
    padding: 50px 16px;
  }
  .contact-markets .contact-markets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .contact-market-card {
    padding: 18px 12px;
  }
  .retails-hero .retails-hero-inner {
    padding: 90px 16px 60px;
  }
  .retails-intro {
    padding: 50px 16px;
  }
  .retails-categories {
    padding: 50px 16px;
  }
  .retails-categories .retails-categories-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .retails-experience {
    padding: 50px 16px;
  }
  .retails-locations {
    padding: 50px 16px;
  }
  .retails-locations .retails-locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .retails-location-card {
    padding: 20px 14px;
  }
  .shop-hero .shop-hero-inner {
    padding: 90px 16px 60px;
  }
  .shop-online-section {
    padding: 50px 16px;
  }
  .shop-online-section .shop-online-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .shop-stores-section {
    padding: 50px 16px;
  }
  .shop-stores-section .shop-stores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .shop-store-card .shop-store-card-body {
    padding: 16px 16px 20px;
  }
  .events-archive-hero .events-archive-hero-inner {
    padding: 90px 16px 60px;
  }
  .events-archive-section {
    padding: 50px 16px;
  }
  .event-single-hero .event-single-hero-inner {
    padding: 0 16px 28px;
  }
  .event-single-content-section {
    padding: 50px 16px;
  }
  .event-related {
    padding: 50px 16px 60px;
  }
  .footer-cta-inner {
    padding: 0 16px;
  }
  .footer-container {
    padding: 0 16px;
  }
  .footer-body {
    padding: 40px 0 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/*
|-------------------------------------------------------------------------------------------------------------------------------
| Media Query (Min and Max)
|-------------------------------------------------------------------------------------------------------------------------------
| Small devices (landscape phones, 576px and up), 
| Medium devices (tablets, 768px and up), 
| Large devices (desktops, 992px and up), 
| Extra large devices (large desktops, 1200px and up)
|-------------------------------------------------------------------------------------------------------------------------------
|
*/

/* ================================================================
   Privacy Policy Page
================================================================ */
.privacy-hero {
  position: relative;
  background: #212a32;
  overflow: hidden;
  padding: 110px 60px 90px;
}
.privacy-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,197,181,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.privacy-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,197,181,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.privacy-hero .privacy-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.privacy-hero .privacy-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 22px;
}
.privacy-hero .privacy-hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.privacy-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.privacy-hero h1 .text-accent { color: #75c5b5; }
.privacy-hero .privacy-hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.privacy-hero .privacy-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}
.privacy-hero .privacy-hero-meta-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
  stroke: #75c5b5;
}
.privacy-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px 120px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}
.privacy-toc {
  position: sticky;
  top: 110px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #edf0f2;
  padding: 32px 28px;
  order: 2;
}
.privacy-toc .privacy-toc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.privacy-toc .privacy-toc-title::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
  flex-shrink: 0;
}
.privacy-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc-counter;
}
.privacy-toc ol li {
  counter-increment: toc-counter;
  margin-bottom: 4px;
}
.privacy-toc ol li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.privacy-toc ol li a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #75c5b5;
  min-width: 24px;
  letter-spacing: 0.5px;
  padding-top: 1px;
}
.privacy-toc ol li a:hover,
.privacy-toc ol li a.is-active {
  background: rgba(117,197,181,0.1);
  color: #2d2d2d;
}
.privacy-toc .privacy-toc-contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e8ebee;
}
.privacy-toc .privacy-toc-contact p {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
  line-height: 1.6;
}
.privacy-toc .privacy-toc-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #75c5b5;
  transition: color 0.2s ease;
  text-decoration: none;
}
.privacy-toc .privacy-toc-contact a:hover { color: #58b9a6; }
.privacy-content { order: 1; }
.privacy-intro {
  background: linear-gradient(135deg, rgba(117,197,181,0.08) 0%, rgba(117,197,181,0.03) 100%);
  border-left: 4px solid #75c5b5;
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin-bottom: 60px;
}
.privacy-intro p {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin: 0;
}
.policy-section { margin-bottom: 64px; scroll-margin-top: 120px; }
.policy-section .policy-section-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #edf0f2;
}
.policy-section .policy-section-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #75c5b5;
  background: rgba(117,197,181,0.1);
  border-radius: 8px;
  padding: 6px 12px;
  flex-shrink: 0;
  margin-top: 4px;
  min-width: 46px;
  text-align: center;
}
.policy-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: #212a32;
  letter-spacing: 0.3px;
  margin: 0;
  line-height: 1.2;
}
.policy-section p {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section strong { color: #2d2d2d; font-weight: 600; }
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.data-card {
  background: #f8f9fa;
  border: 1px solid #edf0f2;
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.data-card:hover {
  border-color: rgba(117,197,181,0.4);
  box-shadow: 0 4px 16px rgba(117,197,181,0.1);
}
.data-card .data-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(117,197,181,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.data-card .data-card-icon svg { width: 18px; height: 18px; stroke: #75c5b5; }
.data-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #212a32;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.data-card p { font-family: 'Barlow', sans-serif; font-size: 13px; color: #777; line-height: 1.7; margin: 0; }
.purpose-list { list-style: none; margin: 20px 0; padding: 0; }
.purpose-list li {
  display: block;
  position: relative;
  padding: 12px 0 12px 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  border-bottom: 1px solid #f2f4f6;
}
.purpose-list li:last-child { border-bottom: none; }
.purpose-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #75c5b5;
}
.cookie-table-wrap { overflow-x: auto; margin: 24px 0; border-radius: 12px; border: 1px solid #edf0f2; }
.cookie-table { width: 100%; border-collapse: collapse; font-family: 'Barlow', sans-serif; font-size: 14px; }
.cookie-table thead { background: #212a32; }
.cookie-table thead th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}
.cookie-table thead th:first-child { border-radius: 12px 0 0 0; }
.cookie-table thead th:last-child { border-radius: 0 12px 0 0; }
.cookie-table tbody tr { border-bottom: 1px solid #edf0f2; transition: background 0.15s ease; }
.cookie-table tbody tr:last-child { border-bottom: none; }
.cookie-table tbody tr:hover { background: #f8f9fa; }
.cookie-table tbody td { padding: 14px 18px; color: #555; line-height: 1.6; vertical-align: top; }
.cookie-table tbody td:first-child { font-weight: 600; color: #2d2d2d; }
.rights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.right-card {
  background: #fff;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.right-card:hover { border-color: #75c5b5; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(117,197,181,0.15); }
.right-card .right-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(117,197,181,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.right-card .right-card-icon svg { width: 22px; height: 22px; stroke: #75c5b5; }
.right-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: #212a32; margin-bottom: 8px; letter-spacing: 0.3px; }
.right-card p { font-family: 'Barlow', sans-serif; font-size: 13px; color: #777; line-height: 1.65; margin: 0; }
.policy-highlight {
  background: #212a32;
  border-radius: 14px;
  padding: 28px 32px;
  margin: 28px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.policy-highlight .policy-highlight-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(117,197,181,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.policy-highlight .policy-highlight-icon svg { width: 20px; height: 20px; stroke: #75c5b5; }
.policy-highlight .policy-highlight-body p { font-family: 'Barlow', sans-serif; font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.8; margin: 0; }
.policy-highlight .policy-highlight-body strong { color: #fff !important; }
.privacy-contact-block {
  background: linear-gradient(135deg, #1a2229 0%, #212a32 100%);
  border-radius: 20px;
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.privacy-contact-block::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,197,181,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.privacy-contact-block .privacy-contact-block-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #75c5b5;
  margin-bottom: 18px;
}
.privacy-contact-block .privacy-contact-block-tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #75c5b5;
  border-radius: 2px;
}
.privacy-contact-block h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: #fff; letter-spacing: 0.4px; margin-bottom: 14px; }
.privacy-contact-block h2 .text-accent { color: #75c5b5; }
.privacy-contact-block p { font-family: 'Barlow', sans-serif; font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 520px; margin: 0 auto 32px; }
.privacy-contact-details { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.privacy-contact-detail { display: flex; align-items: center; gap: 10px; }
.privacy-contact-detail svg { width: 18px; height: 18px; stroke: #75c5b5; flex-shrink: 0; }
.privacy-contact-detail span { font-family: 'Barlow', sans-serif; font-size: 14px; color: rgba(255,255,255,0.75); }
.privacy-contact-detail a { font-family: 'Barlow', sans-serif; font-size: 14px; color: #75c5b5; text-decoration: none; transition: color 0.2s ease; }
.privacy-contact-detail a:hover { color: #58b9a6; }
@media (max-width: 1199.98px) {
  .privacy-hero { padding: 90px 40px 70px; }
  .privacy-layout { padding: 60px 40px 80px; }
}
@media (max-width: 991.98px) {
  .privacy-layout { grid-template-columns: 1fr; padding: 50px 40px 70px; gap: 0; }
  .privacy-toc { position: relative; top: 0; order: -1; margin-bottom: 40px; }
  .privacy-toc ol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .rights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
  .privacy-hero { padding: 70px 24px 50px; }
  .privacy-layout { padding: 36px 24px 60px; }
  .privacy-toc ol { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr; }
  .policy-highlight { flex-direction: column; gap: 14px; padding: 22px 20px; }
  .privacy-contact-block { padding: 36px 24px; }
  .privacy-contact-details { flex-direction: column; align-items: center; gap: 16px; }
}
@media (max-width: 575.98px) {
  .privacy-layout { padding: 28px 16px 50px; }
  .privacy-intro { padding: 20px; }
  .policy-section { margin-bottom: 44px; }
  .privacy-contact-block { padding: 28px 16px; border-radius: 14px; }
  .cookie-table { font-size: 13px; }
  .cookie-table thead th, .cookie-table tbody td { padding: 10px 12px; }
}

/* ── Legal pages: link colours & nested list polish ── */
.purpose-list a { color: #75c5b5; text-decoration: none; transition: color 0.2s ease; }
.purpose-list a:hover { color: #58b9a6; text-decoration: underline; }
.policy-section p a { color: #75c5b5; text-decoration: none; transition: color 0.2s ease; }
.policy-section p a:hover { color: #58b9a6; text-decoration: underline; }
.purpose-list li > ul { margin-top: 8px; padding-left: 0; list-style: none; }
.purpose-list li > ul li { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0 5px 0; border-bottom: none; font-size: 14px; position: static; }
.purpose-list li > ul li::before { content: ''; position: static; display: block; width: 5px; height: 5px; min-width: 5px; border-radius: 50%; background: rgba(117,197,181,0.5); margin-top: 9px; top: auto; left: auto; }

/* ── Hero meta: tighten gap on very small screens ── */
@media (max-width: 575.98px) {
  .privacy-hero-meta { gap: 14px; }
  .privacy-hero-meta-item { font-size: 12px; }
  .privacy-hero-meta-item svg { width: 14px; height: 14px; }
  .policy-section h2 { font-size: 20px; }
  .privacy-toc { padding: 20px; }
  .privacy-toc ol li a { font-size: 12px; padding: 7px 10px; }
  .data-card { padding: 16px; }
  .right-card { padding: 18px 14px; }
  .policy-highlight { padding: 18px 16px; }
}

/* ================================================================
   BLOG ARCHIVE
================================================================ */

/* ── Hero ── */
.blog-archive-hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.blog-archive-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: hero-zoom 8s ease-out forwards;
}
.blog-archive-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,10,16,0.52) 0%, rgba(6,10,16,0.74) 55%, rgba(6,10,16,0.94) 100%), linear-gradient(135deg, rgba(7,24,18,0.55) 0%, transparent 60%);
  z-index: 1;
}
.blog-archive-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 180px 60px 140px;
  width: 100%;
}
.blog-archive-hero-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 2px;
  margin: 0 0 28px;
}
.blog-archive-hero-heading .text-accent { color: #75c5b5; }
.blog-archive-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin: 0 auto 44px;
}
.blog-archive-hero-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.blog-archive-stat {
  display: flex; flex-direction: column;
  align-items: center; padding: 0 36px;
}
.blog-archive-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem; font-weight: 900;
  color: #75c5b5; line-height: 1; letter-spacing: 1px;
}
.blog-archive-stat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.45);
  margin-top: 6px; white-space: nowrap;
}
.blog-archive-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.15); flex-shrink: 0;
}
.blog-archive-hero .blog-archive-hero-inner .section-tag {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px; font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: #75c5b5; margin-bottom: 28px;
}
.blog-archive-hero .blog-archive-hero-inner .section-tag::before,
.blog-archive-hero .blog-archive-hero-inner .section-tag::after {
  content: ''; display: block; width: 32px; height: 2px;
  background: #75c5b5; border-radius: 2px;
}

/* ── Main section ── */
.blog-archive-section {
  padding: 80px 0 100px; background: #f5f6f8;
  position: relative; overflow: hidden;
}
.blog-archive-section::before { display: none; }
.blog-archive-container { max-width: 1400px; margin: 0 auto; padding: 0 60px; position: relative; z-index: 1; }

/* ── Featured first card variant ── */
.bac--featured {
  grid-column: span 2;
  flex-direction: row;
}
.bac--featured .bac-img-wrap {
  width: 52%; flex-shrink: 0; min-height: 360px; height: auto;
}
.bac--featured .bac-body {
  padding: 40px 40px; justify-content: center;
}
.bac--featured .bac-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  -webkit-line-clamp: 3; margin-bottom: 14px;
}
.bac--featured .bac-excerpt {
  -webkit-line-clamp: 4; font-size: 14px;
}
.bac-featured-label {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(33,42,50,0.8); color: rgba(255,255,255,0.7);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* ── Section header ── */
.blog-archive-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 48px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(33,42,50,0.1);
}
.blog-archive-header-left { flex-shrink: 0; }
.blog-archive-header-right { max-width: 520px; }
.blog-archive-header .section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: #75c5b5; margin-bottom: 10px;
}
.blog-archive-header .section-tag::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: #75c5b5; border-radius: 2px;
}
.blog-archive-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 3.5vw, 44px); font-weight: 800;
  color: #212a32; line-height: 1.1; margin: 8px 0 0;
}
.blog-archive-subhead {
  font-family: 'Barlow', sans-serif; font-size: 14px;
  line-height: 1.8; color: rgba(33,42,50,0.55); margin-bottom: 20px;
}
.blog-filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; padding: 8px 16px; border-radius: 20px;
  border: 1px solid rgba(33,42,50,0.18); background: transparent; color: rgba(33,42,50,0.55);
  cursor: pointer; transition: all 0.2s ease;
}
.blog-filter-btn:hover { border-color: #75c5b5; color: #75c5b5; background: rgba(117,197,181,0.08); }
.blog-filter-btn.is-active { background: #75c5b5; border-color: #75c5b5; color: #212a32; }

/* ── Blog archive grid ── */
.blog-archive-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 60px;
}
.bac {
  background: #fff; border: 1px solid rgba(33,42,50,0.08); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.bac:hover { box-shadow: 0 16px 48px rgba(33,42,50,0.12), 0 0 20px rgba(117,197,181,0.08); transform: translateY(-5px); border-color: rgba(117,197,181,0.35); }
.bac-img-wrap {
  display: block; position: relative; height: 220px;
  background: #e8eaed center/cover no-repeat; overflow: hidden;
}
.bac-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(33,42,50,0.5) 0%, transparent 60%);
  transition: opacity 0.25s ease;
}
.bac:hover .bac-img-wrap::after { opacity: 0.7; }
.bac-num {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  background: rgba(33,42,50,0.5); border-radius: 4px;
  padding: 3px 8px; backdrop-filter: blur(4px);
}
.bac-cat {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  background: #75c5b5; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.bac-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bac-meta-row {
  display: flex; align-items: center; gap: 16px; margin-bottom: 12px;
}
.bac-date, .bac-read {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Barlow', sans-serif; font-size: 11px; color: rgba(33,42,50,0.45); letter-spacing: 0.3px;
}
.bac-date svg, .bac-read svg { width: 12px; height: 12px; opacity: 0.5; }
.bac-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px; font-weight: 700; color: #212a32;
  line-height: 1.25; margin-bottom: 10px; letter-spacing: 0.2px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bac-title a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.bac-title a:hover { color: #75c5b5; }
.bac-excerpt {
  font-family: 'Barlow', sans-serif; font-size: 13px;
  line-height: 1.75; color: rgba(33,42,50,0.58); margin-bottom: 18px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bac-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; border-top: 1px solid rgba(33,42,50,0.07); padding-top: 14px; }
.bac-author {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Barlow', sans-serif; font-size: 11px; color: rgba(33,42,50,0.45);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px;
}
.bac-author svg { width: 13px; height: 13px; opacity: 0.6; flex-shrink: 0; }
.bac-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: #75c5b5; text-decoration: none;
  white-space: nowrap; transition: gap 0.2s ease;
}
.bac-cta:hover { gap: 8px; }

/* ── Pagination ── */
.blog-archive-pagination {
  display: flex; justify-content: center; align-items: center;
  padding: 20px 0 10px;
}
.blog-archive-pagination ul {
  display: flex; align-items: center; list-style: none; padding: 0; margin: 0;
  background: #fff; border: 1px solid rgba(33,42,50,0.1);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(33,42,50,0.07);
}
.blog-archive-pagination li { display: inline-flex; }
.blog-archive-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 48px; height: 52px; padding: 0 18px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  color: rgba(33,42,50,0.5); text-decoration: none;
  border-right: 1px solid rgba(33,42,50,0.08);
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease;
}
.blog-archive-pagination li:last-child .page-numbers { border-right: none; }
.blog-archive-pagination .page-numbers:hover {
  background: rgba(117,197,181,0.1); color: #75c5b5;
}
.blog-archive-pagination .page-numbers.current {
  background: #75c5b5; color: #fff;
  font-size: 15px;
}
.blog-archive-pagination .page-numbers.prev,
.blog-archive-pagination .page-numbers.next {
  font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: rgba(33,42,50,0.45);
  padding: 0 36px; gap: 8px; min-width: 110px;
}
.blog-archive-pagination .page-numbers.prev:hover,
.blog-archive-pagination .page-numbers.next:hover { color: #75c5b5; background: rgba(117,197,181,0.1); }
.blog-archive-pagination .page-numbers.dots {
  color: rgba(33,42,50,0.3); cursor: default; pointer-events: none;
}

/* ── Empty state ── */
.blog-archive-empty { text-align: center; padding: 100px 20px; }
.blog-archive-empty-icon {
  width: 72px; height: 72px; margin: 0 auto 24px;
  background: rgba(117,197,181,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.blog-archive-empty-icon svg { width: 32px; height: 32px; stroke: #75c5b5; }
.blog-archive-empty h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700;
  color: #212a32; margin-bottom: 10px;
}
.blog-archive-empty p { font-family: 'Barlow', sans-serif; font-size: 15px; color: rgba(33,42,50,0.55); margin-bottom: 28px; }

/* ================================================================
   BLOG SINGLE
================================================================ */

/* ── Hero ── */
.blog-single-hero {
  position: relative; min-height: 75vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.blog-single-hero-bg {
  position: absolute; inset: 0;
  background: var(--blog-bg, #212a32) center/cover no-repeat;
}
.blog-single-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,22,29,0.95) 0%, rgba(15,22,29,0.65) 50%, rgba(15,22,29,0.3) 100%);
}
.blog-single-hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 900px;
  margin: 0 auto; padding: 0 60px 80px;
}
.blog-single-breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-family: 'Barlow', sans-serif; font-size: 12px; color: rgba(255,255,255,0.45);
}
.blog-single-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s ease; }
.blog-single-breadcrumb a:hover { color: #75c5b5; }
.blog-single-breadcrumb span { color: rgba(255,255,255,0.25); }
.blog-single-breadcrumb .breadcrumb-current { color: rgba(255,255,255,0.6); }
.blog-single-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 58px); font-weight: 800;
  line-height: 1.1; color: #fff; letter-spacing: 0.4px;
  margin: 14px 0 28px;
}
.blog-single-meta {
  display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start;
}
.blog-single-meta-item { display: flex; align-items: flex-start; gap: 12px; }
.blog-single-meta-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(117,197,181,0.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.blog-single-meta-icon svg { width: 16px; height: 16px; stroke: #75c5b5; }
.blog-single-meta-label {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 3px;
}
.blog-single-meta-value {
  display: block; font-family: 'Barlow', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.3;
}

/* ── Content section ── */
.blog-single-content-section { padding: 80px 0 100px; background: #fff; }
.blog-single-content-container {
  max-width: 1300px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start;
}

/* ── Main content ── */
.blog-single-main { min-width: 0; }
.blog-single-body {
  font-family: 'Barlow', sans-serif; font-size: 16px;
  line-height: 1.9; color: #444; margin-bottom: 48px;
}
.blog-single-body h2 {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700; color: #212a32; margin: 40px 0 16px; letter-spacing: 0.3px;
}
.blog-single-body h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(18px, 2vw, 24px);
  font-weight: 700; color: #212a32; margin: 32px 0 12px; letter-spacing: 0.2px;
}
.blog-single-body h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px;
  font-weight: 700; color: #212a32; margin: 24px 0 10px;
}
.blog-single-body p { margin-bottom: 20px; }
.blog-single-body p:last-child { margin-bottom: 0; }
.blog-single-body a { color: #75c5b5; text-decoration: none; border-bottom: 1px solid rgba(117,197,181,0.4); transition: color 0.2s ease, border-color 0.2s ease; }
.blog-single-body a:hover { color: #58b9a6; border-color: #58b9a6; }
.blog-single-body ul, .blog-single-body ol { margin: 20px 0 20px 24px; }
.blog-single-body li { margin-bottom: 10px; }
.blog-single-body blockquote {
  border-left: 4px solid #75c5b5; background: rgba(117,197,181,0.06);
  border-radius: 0 12px 12px 0; padding: 20px 28px; margin: 28px 0;
  font-style: italic; color: #555;
}
.blog-single-body blockquote p { margin: 0; font-size: 17px; line-height: 1.75; }
.blog-single-body img { border-radius: 12px; max-width: 100%; height: auto; margin: 24px 0; }
.blog-single-body strong { color: #212a32; font-weight: 600; }
.blog-single-body hr { border: none; border-top: 1px solid #edf0f2; margin: 36px 0; }
.blog-single-body--placeholder p { color: #999; font-style: italic; }

/* ── Share row ── */
.blog-single-share-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  padding: 24px 0; border-top: 1px solid #edf0f2; border-bottom: 1px solid #edf0f2;
  margin-bottom: 36px;
}
.blog-single-share-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: #aaa;
}
.blog-share-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none;
  padding: 8px 14px; border-radius: 8px; border: 1px solid;
  transition: all 0.2s ease;
}
.blog-share-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.blog-share-btn--linkedin { color: #0077b5; border-color: rgba(0,119,181,0.3); background: rgba(0,119,181,0.04); }
.blog-share-btn--linkedin:hover { background: #0077b5; color: #fff; border-color: #0077b5; }
.blog-share-btn--twitter { color: #212a32; border-color: rgba(33,42,50,0.2); background: rgba(33,42,50,0.03); }
.blog-share-btn--twitter:hover { background: #212a32; color: #fff; border-color: #212a32; }
.blog-share-btn--facebook { color: #1877f2; border-color: rgba(24,119,242,0.3); background: rgba(24,119,242,0.04); }
.blog-share-btn--facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.blog-share-btns--vertical { display: flex; flex-direction: column; gap: 8px; }
.blog-share-btns--vertical .blog-share-btn { width: 100%; justify-content: center; }

/* ── Prev/next nav ── */
.blog-single-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.blog-single-nav-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 20px; border: 1px solid #edf0f2; border-radius: 12px;
  text-decoration: none; background: #f8f9fa;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.blog-single-nav-item:hover { border-color: #75c5b5; background: #fff; transform: translateY(-2px); }
.blog-single-nav-item--next { text-align: right; }
.blog-single-nav-dir {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #75c5b5;
}
.blog-single-nav-item--next .blog-single-nav-dir { justify-content: flex-end; }
.blog-single-nav-dir svg { width: 14px; height: 14px; }
.blog-single-nav-title {
  font-family: 'Barlow', sans-serif; font-size: 13px; color: #444; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-single-back { margin-top: 8px; }

/* ── Sidebar ── */
.blog-single-sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 20px; }
.blog-sidebar-card {
  background: #f8f9fa; border: 1px solid #edf0f2; border-radius: 16px; padding: 24px;
}
.blog-sidebar-card--cta { background: #fff; }
.blog-sidebar-card--dark { background: #212a32; border-color: #212a32; }
.blog-sidebar-card--dark .blog-sidebar-card-heading { color: #fff; }
.blog-sidebar-card--dark .blog-sidebar-cta-desc { color: rgba(255,255,255,0.6); }
.blog-sidebar-card-heading {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: #212a32;
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid #edf0f2;
}
.blog-sidebar-card--dark .blog-sidebar-card-heading { border-color: rgba(255,255,255,0.1); }
.blog-sidebar-detail-list { list-style: none; padding: 0; margin: 0; }
.blog-sidebar-detail-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid #edf0f2;
}
.blog-sidebar-detail-list li:last-child { border-bottom: none; padding-bottom: 0; }
.blog-sidebar-detail-icon {
  width: 32px; height: 32px; min-width: 32px;
  background: rgba(117,197,181,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.blog-sidebar-detail-icon svg { width: 15px; height: 15px; stroke: #75c5b5; }
.blog-sidebar-detail-label {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #aaa; margin-bottom: 2px;
}
.blog-sidebar-detail-value {
  display: block; font-family: 'Barlow', sans-serif; font-size: 13px; color: #444; line-height: 1.3;
}
.blog-sidebar-cta-desc { font-family: 'Barlow', sans-serif; font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 16px; }
.blog-sidebar-newsletter { display: flex; flex-direction: column; gap: 8px; }
.blog-sidebar-newsletter-input {
  width: 100%; padding: 10px 14px; border: 1px solid #e0e4e8; border-radius: 8px;
  font-family: 'Barlow', sans-serif; font-size: 13px; color: #333;
  outline: none; transition: border-color 0.2s ease; box-sizing: border-box;
}
.blog-sidebar-newsletter-input:focus { border-color: #75c5b5; }
.blog-sidebar-newsletter-btn {
  width: 100%; padding: 10px 14px; background: #75c5b5; color: #fff;
  border: none; border-radius: 8px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  transition: background 0.2s ease;
}
.blog-sidebar-newsletter-btn:hover { background: #58b9a6; }

/* ── Related posts ── */
.blog-related { padding: 80px 0 100px; background: #212a32; position: relative; overflow: hidden; }
.blog-related::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 34px 34px; pointer-events: none;
}
.blog-related-container { max-width: 1400px; margin: 0 auto; padding: 0 60px; position: relative; z-index: 1; }
.blog-related-header { margin-bottom: 40px; }
.blog-related-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  color: #fff; line-height: 1.1; margin: 8px 0 0;
}
.blog-related-all { text-align: center; margin-top: 50px; }

/* ================================================================
   BLOG RESPONSIVE
================================================================ */
@media (max-width: 1199.98px) {
  .blog-archive-hero-inner { padding: 140px 40px 110px; }
  .blog-archive-container { padding: 0 40px; }
  .blog-single-hero-inner { padding: 0 40px 70px; }
  .blog-single-content-container { padding: 0 40px; gap: 40px; }
  .blog-related-container { padding: 0 40px; }
}
@media (max-width: 991.98px) {
  .blog-archive-hero { min-height: 80vh; }
  .blog-archive-hero-inner { padding: 120px 24px 90px; }
  .blog-archive-container { padding: 0 24px; }
  .blog-archive-header { grid-template-columns: 1fr; gap: 24px; }
  .blog-archive-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bac--featured { grid-column: span 2; flex-direction: column; }
  .bac--featured .bac-img-wrap { width: 100%; min-height: 260px; }
  .bac--featured .bac-body { padding: 28px 28px; }
  .blog-single-content-container { grid-template-columns: 1fr; padding: 0 24px; }
  .blog-single-sidebar { position: relative; top: 0; }
  .blog-single-hero-inner { padding: 0 24px 60px; }
  .blog-related-container { padding: 0 24px; }
  .blog-related .blog-archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
  .blog-archive-hero { min-height: 70vh; }
  .blog-archive-hero-inner { padding: 100px 20px 80px; }
  .blog-archive-section { padding: 50px 0 70px; }
  .blog-archive-container { padding: 0 20px; }
  .blog-archive-grid { grid-template-columns: 1fr; }
  .bac--featured { grid-column: span 1; }
  .blog-archive-hero-meta { gap: 0; }
  .blog-archive-stat { padding: 0 20px; }
  .blog-archive-divider { height: 28px; }
  .blog-single-hero { min-height: 60vh; }
  .blog-single-hero-inner { padding: 0 20px 50px; }
  .blog-single-meta { gap: 16px; }
  .blog-single-content-section { padding: 48px 0 70px; }
  .blog-single-content-container { padding: 0 20px; }
  .blog-single-nav { grid-template-columns: 1fr; }
  .blog-related { padding: 50px 0 70px; }
  .blog-related-container { padding: 0 20px; }
  .blog-related .blog-archive-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
  .blog-archive-hero { min-height: 60vh; }
  .blog-archive-hero-inner { padding: 80px 16px 60px; }
  .blog-archive-hero-heading { letter-spacing: 0.5px; }
  .blog-archive-container { padding: 0 16px; }
  .blog-archive-stat { padding: 0 14px; }
  .blog-single-content-container { padding: 0 16px; }
  .blog-related-container { padding: 0 16px; }
  .blog-filter-tabs { gap: 6px; }
  .blog-filter-btn { font-size: 10px; padding: 6px 12px; }
  .bac-img-wrap { height: 180px; }
  .blog-single-meta { flex-direction: column; gap: 12px; }
  .blog-single-nav { gap: 10px; }
  .blog-share-btns { flex-direction: column; }
  .blog-share-btn { justify-content: center; }
}
