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

@layer {
	*,
	*::before,
	*::after {
		box-sizing: border-box;
		background-repeat: no-repeat;
	}

	* {
		padding: 0;
		margin: 0;
	}

	html {
		-webkit-text-size-adjust: none;
		text-size-adjust: none;
		line-height: 1.5;
		-webkit-font-smoothing: antialiased;
        block-size: 100%;
	}

	body {
		min-block-size: 100%;
	}

	img,
	iframe,
	audio,
	video,
	canvas {
		display: block;
		max-inline-size: 100%;
		block-size: auto;
	}

	svg {
		max-inline-size: 100%;
	}

	svg:not([fill]) {
		fill: currentColor;
	}

	input,
	button,
	textarea,
	select {
		font: inherit;
	}

	textarea {
		resize: vertical;
	}

	fieldset,
	iframe {
		border: none;
	}

	p,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		overflow-wrap: break-word;
	}

	p {
		text-wrap: pretty;
		font-variant-numeric: proportional-nums;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-variant-numeric: lining-nums;
	}

	p,
    blockquote,
    q,
    figcaption,
    li {
        hanging-punctuation: first allow-end last;
    }

	input,
	label,
	button,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
        line-height: 1.1;
    }

	math,
	time,
	table {
		font-variant-numeric: tabular-nums lining-nums slashed-zero;
	}

	code {
		font-variant-numeric: slashed-zero;
	}

	table {
		border-collapse: collapse;
	}

	abbr {
		font-variant-caps: all-small-caps;
		text-decoration: none;

		&[title] {
			cursor: help;
			text-decoration: underline dotted;
		}
	}

	sup,
	sub {
		line-height: 0;
	}

	:disabled {
		opacity: 0.8;
		cursor: not-allowed;
	}

	:focus-visible {
		outline-offset: 0.2rem;
	}
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('../fonts/GlacialIndifference-Bold.woff2') format('woff2'),
        url('../fonts/GlacialIndifference-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('../fonts/GlacialIndifference-Regular.woff2') format('woff2'),
        url('../fonts/GlacialIndifference-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.text-red {
  color: #D62423;
  font-weight: 500;
}

body {
  font-family: 'Glacial Indifference', sans-serif;
  color: #000;
  font-size: 16px;
  font-weight: normal;
  
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* MOBILE */  
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    margin-left: auto;
    background: #666;
    padding: 8px 17px;
    border-radius: 20px;
  }

  .header-right {
    position: fixed;
    top: 76px;
    right: -100%;
    width: 75%;
    background: #333;
    flex-direction: column;
    padding: 20px;
    transition: 0.4s ease;
    z-index: 1000;
    border: 1px solid #666;
  }

  .header-right.active {
    right: 0;
    top: 76px;
    z-index: 99999;
    left: 0;
    width: 100%;
    border-radius: 24px;
  }

  .nav {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    width: 100%;
    a {
      padding: 1rem;
    }
  }

  .header-cta {display: none;
  }
  .hamburger.active span:nth-child(1) {
    
    transform: rotate(45deg) translate(4px, 4px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}


/* HEADER WRAPPER */
.header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  will-change: transform;
  @media (max-width: 767px) {
    left: 50%;
    margin: 0 auto;
    transform: translateX(-50%);
    width: calc(100% - 40px); /* optional padding effect */
  }
}

/* INNER BAR */
.header-inner {
  width: 90%;
  max-width: 1300px;
  padding: 12px 25px;

  display: flex;
  align-items: center;

  border-radius: 50px;

  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.1);
   /* 🍎 Glass Effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);

  /* subtle border */
  border: 1px solid rgba(255, 255, 255, 0.15);

  /* soft shadow */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);

  /* smooth transition */
  transition: all 0.3s ease;
  @media (max-width: 767px) {
    max-width: 100%;
    width: 100%;
    padding: 6px 20px;
  }
}
.header-right {
    margin-left: auto;
    display: flex;
    gap: 3rem;
    align-items: center;
     @media (max-width: 768px) {
      align-items: flex-start;
      gap: 1.25rem;
     }
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
}

.logo img {
  width: 64px;
  padding: 6px;
}

/* NAV */
.nav {
  display: flex;
  gap: 3rem;
  @media (max-width: 768px) {  
    gap: 0.5rem;
  }
}

.nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav a:hover {
  color: #fff;
}

/* CTA BUTTON */
.btn-contact {
  padding: 8px 18px;
  border-radius: 20px;
  background: #fff;
  color: #000;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-contact:hover {
  background: #ddd;
}
/* ================= HERO ================= */
.hero {
  height: 100vh;
  background: #0E0E0F;
  position: relative;
  overflow: visible;
}

.hero-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

/* CENTER X */
.hero-x {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  opacity: 0.6;
  @media(min-width: 40rem) {
    width: 500px;
  }
  @media(min-width: 48rem) {
    width: 650px;
  }
  @media(min-width: 62rem) {
    width: 820px;
  }
}

.hero-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #fff;
}

@media (min-width: 48rem) {
  .hero-content {
    bottom: clamp(-150px, -10vh, -200px);
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .hero-content {
    bottom: -170px;
  }
}


.hero-title {
  font-size: 34px;
  font-weight: normal;
  opacity: 0;
  transform: translateY(80px);
  @media (min-width: 48rem) {
    font-size: clamp(52px, 8vw, 96px);
  }
  
}

.hero-sub {
  font-size: 18px;
	color: #D1D5DC;
	padding-bottom: 30px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(80px);
  @media (width < 48rem) {
    padding:  0 1rem;
  }
}

@media (min-width: 48rem) and (max-height: 850px) {

  .hero-title {
    font-size: clamp(48px, 6vw, 72px);
  }

  .hero-sub {
    font-size: 16px;
    padding-bottom: 16px;
  }

}

.hero-cta {
  margin-top: 15px;
  display: inline-block;
  opacity: 0;
  transform: translateY(80px);
}

/* ================= PEEK SECTION ================= */

.peek-section {
  position: absolute;
  top: 80%;
  left: 0;

  width: 100%;
  height: 100vh;
  max-width: 100%;
  margin: 0 auto;
  right: 0;

  transform: translateY(0);
}
/* VIDEO */
.next-inner {
  width: 100%;
  height: 100%;
}

.hero-main-video{
  object-fit: cover;
}
.next-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.scroll-space {
  height: 200vh;  /* 👈 gives proper release distance */
}

.btn {
	padding: 8px 16px;
	text-decoration: none;
}
.btn-primary {
	background-color: #fff;
	color: #000;
	border-radius: 60px;
	border:1px solid #000;
	&:hover{
		background-color: #000;
		color: #fff;
	}
}


.btn-black {
	background-color: #0E0E0F;
	color: #fff;
	border-radius: 60px;
	border:1px solid #0E0E0F;
	&:hover{
		background-color: #fff;
		color: #000;
	}
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections */
.section-dark {
  background: #0E0E0F;
  color: #fff;
  padding: 120px 0;
}

.section-light {
  background: #f5f5f5;
  color: #000;
  padding: 120px 0;
}
/* LEFT */

/* RIGHT */
.who-text {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-size: 18px;
  @media(min-width:48rem) {
    font-size: 34px;  
  }
}

.highlight {
  color: #ff3b3b;
  font-weight: 500;
}

.stats-title {
  text-align: center;
  margin-bottom: 60px;
  @media(min-width: 48rem) {
    margin-bottom: 160px;
  }
  @media (min-width: 48rem) and (max-height: 750px) {
    margin-bottom: 40px;
  }
  br {
    @media(min-width:36rem) {
      display: none;
    }
  }
}

.highlight-red {
  color: #ff3b3b;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  @media (max-width:768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    row-gap: 40px;
  }
}

.stat-item h2 {
  margin-bottom: 0px;
  font-size: 34px;
  @media (min-width:48rem){
    font-size: 77px;  
    margin-bottom: 10px;
  }
}

.who-section {
  background: #0E0E0F;
  padding: 70px 0;
  color: #fff;
  @media(min-width:48rem) {
    padding: 140px 0;  
  }
}

.container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
  @media (min-width: 768px) {
    grid-template-columns: 1fr 1.5fr;
    gap: 120px;  
  }
}


.text-red {
  color: #D62423;
  font-weight: 500;
}

.who-section,
.stats-section {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
}

.stats-section {
	padding-top: 100px;
	padding-bottom: 100px;
  @media (min-width: 48rem) {
    padding-top: 200px;
	  padding-bottom: 200px;
  }
  @media (max-height: 750px) {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

h2 {
	font-size: 27px;
	line-height: 1.2;
	font-weight: normal;
  @media (min-width: 48rem) {
    font-size: 53px;
  }
}

h3, .stat-item p {
    font-size: 18px;
	
	font-weight: normal;
  @media (min-width: 48rem) {
    font-size: 34px;
	
  }
}

.featured-work {
  position: relative;
  height: 35vh;
  background: #0E0E0F;
  color: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
   @media (min-width: 48rem) {
    height: 55vh;
  
   }
   
}

.featured-title {
  font-size: 32px;
  @media (min-width: 48rem) {
    font-size: 96px;
  }
  @media (min-width: 48rem) and (max-height: 750px) {
    font-size: clamp(48px, 10vw, 60px);
  }
}

.oppo-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  color: #fff;
  background: #000;
  z-index: 10;
}

/* 🎥 Video */
.oppo-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* 🔥 Overlay */
.oppo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 999;   /* 👈 IMPORTANT */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  @media (min-width: 48rem) {
    height: 100%;
  }
}

/* Center Title */
.oppo-title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  margin-top: 80px;
}

.oppo-title span {
  font-size: 14px;
  vertical-align: super;
}

/* Bottom Layout */
.oppo-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  bottom: 0px;
  flex-direction: column;
  width: 100%;
  left: 0;
  right: 0;
  will-change: transform;
  padding: 0 30px 50px;
  &:after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.001) 0%, rgba(0, 0, 0, 0.75) 85%, rgba(0, 0, 0, 0.75) 100%);
    height: 150%;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}
.oppo-bottom-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  @media (min-width:48rem) {
    flex-direction: row;
  }
}

/* Left */
.oppo-left {
  max-width: 480px;
}

.brand {
  color: #00ff66;
  margin-bottom: 10px;
  max-width: 80px;
  object-fit: contain;
  max-height: 80px;
  
}

.oppo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.arrow-btn {
  border: none;
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.oppo-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.2;
  max-width: 100%;
  align-self: flex-start;
  @media (min-width:48rem) {
    max-width: 65%;
  }
}

/* Right Stats */
.oppo-right {
  display: flex;
  gap: 30px;
  align-items: flex-start;
     order: -1;
  @media (min-width:48rem) {
    order: 1;
  }
}
/* .oppo-section.active .oppo-media{
  width: 50%;
} */

.oppo-right-desc {
  background-color: rgba(0,0,0,0.1);
  border-radius: 24px;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  @media (min-width:48rem) {
    padding: 12px 15px;
  }
}

.oppo-right p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
   @media (min-width:48rem) {

  font-size: 22px;
   }
}


.panel-content {
  display: flex;
  gap: 60px;
}

.panel-block h3 {
  font-size: 20px;
  margin-bottom: 10px;
}


.oppo-section {
  position: relative;
  height: 100vh;
  background: #000;
  overflow: hidden;
  &.active {
    .oppo-desc {
      opacity: 0;
    }
  }
}
.oppo-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

/* .oppo-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
} */
.oppo-media {
  width: 100%;
  opacity: 1;
  @media (max-width:767px) {
    /* display: none; */
  }
}
.oppo-section.active .oppo-media {
  width: 100%;
   @media (max-width:767px) {
    /* opacity: 0; */
   }
}



/* FLEX WRAPPER */
.oppo-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

/* VIDEO SIDE */
.oppo-media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.oppo-video {
  position: absolute;
    top: 50%;
    left: 50%;
  
    width: 177.78vh;
    /* 16:9 ratio */
    height: 56.25vw;
  
    min-width: 100vw;
    min-height: 100vh;
  
    transform: translate(-50%, -50%);
}


/* RIGHT PANEL (hidden initially) */
.oppo-right-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
  background: #000;
  opacity: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px;
  height: 85%;
  opacity: 0;
  z-index: -1;


  backdrop-filter: blur(10px);
  @media (min-width:48rem) {
    width: 70%;
    padding: 80px;
    overflow: hidden;
    height: 80%;
      justify-content: center;
      align-items: center;
        background: rgba(0,0,0,0.6); /* optional glass effect */
  }
}
.oppo-section {
  &.active {
    .oppo-right-panel {
      /* z-index: 10; */
    }
  }
}

/* CONTENT */
.panel-content {
  display: flex;
  gap: 25px;
  flex-direction: column;
  @media (min-width:48rem) {
    flex-direction: row;
    gap: 60px;
  }
}

.panel-block h3 {
  font-size: 16px;
  margin-bottom: 10px;
  @media (min-width:48rem) {
    font-size: 20px;
  }
}

.panel-block p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
   @media (min-width:48rem) {
    font-size: 18px;
  }
}

/* BUTTON */
.arrow-btn {
  margin-left: auto;
  border-radius: 50px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  width: 56px;
  height: 40px;
  transition: all 0.35s ease;
   @media (min-width:48rem) {
    
     margin-left: 10px;
  }
}

span.arrow-btn-arrow {
    width: 20px;
    height: 2px;
    min-width: 20px;
    display: block;
    background: #000;
    position: relative;
    margin: 0 auto;
    transition: all 0.35s ease;
}
.arrow-btn:hover .arrow-btn-arrow{
  transform: rotate(-25deg);
  transition: all 0.35s ease;
}

span.arrow-btn-arrow:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 2px;
    background: #000;
    transform: rotate(45deg);
    right: 0;
    top: -3px;
}

span.arrow-btn-arrow:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 2px;
    background: #000;
    transform: rotate(-45deg);
    right: 0;
    top: 3px;
}
.arrow-btn.open .arrow-btn-arrow::after,
.arrow-btn.open .arrow-btn-arrow::before {
  content: "";
  background-color: transparent;
}

/* 🔥 hover ONLY when active */
.arrow-btn.open:hover .arrow-btn-arrow span::before {
  transform: rotate(-18deg) translateY(-3px);
}
.arrow-btn.open:hover .arrow-btn-arrow {
    transform: rotate(0deg);
    transition: all 0.35s ease;
}

/*
.why-carousel,
.oppo-media,
.oppo-right-panel,
.oppo-bottom {
  will-change: transform;
}


.why-section {
  height: 100vh;
  background: #000;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 20;
}

.why-inner {
  padding: 80px 40px;
}

.why-title {
  font-size: 32px;
  margin-bottom: 100px;
  @media (min-width:48rem) {
    font-size: 96px;  
  }
}
.why-carousel {
  display: flex;
  gap: 20px;
  width: max-content;  
   will-change: transform;
   @media (min-width:48rem) {
    gap: 40px;  
  }
}

.why-card {
  min-width: 260px;
  max-width: 260px;
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-card-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  z-index: 0;
  &:after{
    content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.001) 0%, rgba(0, 0, 0, 0.4) 30%,
      rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.75) 70%,rgba(0, 0, 0, 0.75) 85%, rgba(0, 0, 0, 0.75) 100%);
    z-index: -1;
  }
    
}

.why-card h3 {
  font-size: 18px;
  padding-bottom: 10px;
}
.why-card span {
  background-color: #000;
  padding: 4px 8px;
  font-size: 11px; 
  margin-bottom: 10px;
  display: inline-block;
}
.why-card p {
  font-size: 14px;
  opacity: 0.7;
}
.why-section::before,
.why-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.why-section::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.why-section::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}
*/

.why-carousel,
.oppo-media,
.oppo-right-panel,
.oppo-bottom {
  will-change: transform;
}

/* WHY SECTION */
.why-section {
  min-height: 100vh;
  background: #000;
  color: #fff;
  position: relative;
  z-index: 20;
  
  /* 📱 Mobile Defaults: Allow natural touch swiping */
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory; 
  -webkit-overflow-scrolling: touch; 
}
.why-header {
  position: relative;
  z-index: 5;
  width: 100%;
}

.why-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  @media (max-width: 767px) {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
  }
}
/* 💻 Desktop Override for Scroll Pinning */
@media (min-width: 768px) {
  .why-section {
    height: 100vh;
    overflow: hidden; /* Let GSAP handle the movement exclusively */
  }
}

.why-inner {
  padding: 60px 20px;
  @media (min-width: 48rem) {
    padding: 80px 40px;
  }
}

.why-title {
  font-size: 32px;
  margin-bottom: 40px; /* Reduced to avoid pushing cards off-screen on mobile */
  @media (min-width: 48rem) {
    font-size: 96px;  
    margin-bottom: 100px;
  }
  
}
@media (max-height: 750px) {
  .why-title {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 60px;
  }

}

.why-carousel {
  display: flex;
  gap: 20px;
  width: max-content;  /* 🔥 IMPORTANT */
  will-change: transform;
  
  @media (min-width: 48rem) {
    gap: 40px;  
  }
}

/* .why-card {
  min-width: 260px;
  max-width: 260px;
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  scroll-snap-align: start; /* Snaps cleanly on mobile swipe
} */
 .why-card {
  min-width: 260px;
  max-width: 260px;
  width: 100%;

  height: clamp(240px, 42vh, 380px);

  position: relative;
  overflow: hidden;
  border-radius: 12px;

  scroll-snap-align: start;
}

.why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  z-index: 0;
}

.why-card-desc:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.001) 0%, rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 0.75) 85%, rgba(0, 0, 0, 0.75) 100%);
  z-index: -1;
}

.why-card h3 {
  font-size: 18px;
  padding-bottom: 10px;
}

.why-card span {
  background-color: #000;
  padding: 4px 8px;
  font-size: 11px; 
  margin-bottom: 10px;
  display: inline-block;
}

.why-card p {
  font-size: 14px;
  opacity: 0.7;
}

/* Side Gradients - Disabled on mobile to keep touch targets pristine */
@media (min-width: 768px) {
  .why-section::before,
  .why-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Allows users to click elements underneath */
  }

  .why-section::before {
    left: 0;
    /* background: linear-gradient(to right, #000, transparent); */
  }

  .why-section::after {
    right: 0;
    /* background: linear-gradient(to left, #000, transparent); */
  }
}

.brands-section {
  background: #eee;
  padding: 120px 0 200px;
  text-align: center;
  @media (width > 47.9375rem) {
    padding: 12px 0 120px;
  }
}
.brands-title {
  padding-bottom: 80px;
  margin-top: 80px;
  @media (width > 47.9375rem) {
    padding-bottom: 150px;
    /* padding-bottom: 200px; */
  }
}

.brands-wrapper {
  overflow: hidden;
  width: 100%;
}

.brands-track {
  display: flex;
  width: max-content;
}

/* .brands-track img {
  margin: 0 40px;
  height: 40px;
} */

.brands-track img {
  width: 165px;
  height: 70px;

  object-fit: contain;
  object-position: center;

  margin: 0 32px;

  flex-shrink: 0;

  filter: grayscale(0%);
}

/* mobile */
@media (max-width: 767px) {

  .brands-track img {
    width: 120px;
    height: 50px;

    margin: 0 20px;
  }

}

.cta-section {
  position: relative;
  height: 100vh;
  background: #0D0D0D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 10;
}

/* content */

.cta-content p {
  margin-top: 15px;
  color: rgba(255,255,255,0.6);
}

.cta-btn {
  margin-top: 25px;
  padding: 10px 20px;
  border-radius: 40px;
  border: none;
  background: #fff;
  color: #000;
  cursor: pointer;
}
.cta-title {
  font-size: 32px;
  line-height: 1.2;
  overflow: hidden;
  padding-bottom: 10px;
  @media (min-width:48rem) {
    font-size: 96px;
  }
}
.cta-content p {
  padding-bottom: 25px;
}

.cta-title div {
  overflow: hidden; /* for line reveal */
}

.contact-section {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  position: relative;
  min-height: 100dvh;
  width: 100%;
  max-width: 100%;
  z-index: 50; /* 👈 higher than previous sections */
  @media (min-width: 48rem) {
     padding: 160px 80px;

  }
}

.contact-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  margin: auto;
  gap: 40px;
  @media (min-width: 48rem) {
    flex-direction: row;
    gap: 0;
      max-width: 1200px;
  }
}

/* LEFT */
.contact-title {
  line-height: 1.3;
}


/* RIGHT FORM */
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 350px;
  @media (min-width: 48rem) {
    max-width: 350px;
  }
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px;
  color: #fff;
  font-size: 14px;
  transform: none !important;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  align-self: flex-end;
  background: #fff;
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transform: none !important;
}

.form-msg {
  font-size: 13px;
  margin-top: 5px;
}

.footer {
  background: #000;
  color: #fff;
  padding: 160px 40px 20px;
  z-index: 100;
  position: relative;
  font-size: 18px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1280px;
  margin: auto;
  padding-bottom: 100px;  
  flex-direction: column;
  gap: 80px;
  @media (min-width:48rem){
    flex-direction: row;
    gap: 20px;
    padding-bottom: 200px; 
  }
    
}

/* columns */
.footer-col {
  max-width: 250px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-weight: 500;
}
.footer-col a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  &:hover{
    text-decoration: underline;
    
      color: rgba(255,255,255,0.6);
    
  }
}
.footer-col .footer-logo {
  margin-bottom: 15px;
  display: inline-flex;
}

.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

/* brand */
.footer-brand .logo {
  font-size: 32px;
  margin-bottom: 10px;
}

.footer-brand h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

/* social */
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 60px;
  font-size: 18px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  a {
    color: #Fff;
    &:hover{
      color: rgba(255,255,255,0.7);
    }
  }
}

/* bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap:50px;
  @media (min-width:48rem) {
    flex-direction: row;
  }
}

/* WHY CROSSBOX SECTION */
.why-crossbox-section {
  background: #F9FAFB;
  padding: 70px 20px;
  height: auto;
  display: flex;
  align-items: center;
  @media (min-width:48rem) {
    height: 100vh;
    padding: 100px 20px;
  }
  @media (max-height: 750px) {
    padding: 70px 20px;
    height: auto;
  }
}

.why-crossbox-title {
  font-size: 96px;
  margin-bottom: 60px;
  @media (min-width:48rem) {
    margin-bottom: 100px;
  }
  @media (max-height: 750px) {
    margin-bottom: 50px;
    font-size: clamp(48px, 10vw, 72px);
  }
}

/* GRID */
.why-crossbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 120px;
  @media (max-height: 750px) {
    gap: 40px 80px;
  }
  
}


/* ICON */
.icon-box {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 30px;
  
  @media (min-width:48rem) {
    width: 64px;
    height: 64px;
  }
  @media (max-height: 750px) {
    width: 48px;
    height: 48px;
  }
  img {
    width: 20px;
    @media (min-width:48rem) {
      width: 24px;
    }
  }
}

/* TITLE */
.why-crossbox-item h3 {
  font-size: 27px;
  margin-bottom: 10px;
  @media (min-width:48rem) {
    font-size: 22px;
  }
}

/* TEXT */
.why-crossbox-item p {
  font-size: 16px;
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.2;
  padding-bottom: 30px;
  @media (min-width:48rem) {
    font-size: 18px;
    line-height: 1.4;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-crossbox-title {
    font-size: 32px;
  }

  .why-crossbox-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


@media (max-width: 767px) {

  .oppo-section.active .oppo-media {
    position: relative;
    width: 100%;
    height: 100%;
    /* transform: none !important; */
  }

  .oppo-section.active .oppo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top:0
  }

  .oppo-section.active .oppo-right-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 70%;
    background: transparent;
    z-index: 20;

    display: flex;

    padding: 0;
    opacity: 1;
    overflow: hidden;
    pointer-events: none;
    top: 0;
  }

  .oppo-section.active .panel-content {
    width: 100%;
    max-height: 72vh;

    overflow-y: auto;
    padding: 18vh 24px 30px;

    background: linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.4) 20%,
      rgba(0,0,0,0.92) 45%,
      rgba(0,0,0,1) 100%
    );

    pointer-events: auto;

    display: flex;
    flex-direction: column;
    gap: 32px;
    p {
      line-height: 1.25;
    }
  }

  .oppo-section.active .oppo-bottom {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 30;
  }

  .oppo-right-panel::-webkit-scrollbar,
  .panel-content::-webkit-scrollbar {
    display: none;
  }
}

/* For smaller screens, we switch to a more mobile-friendly layout */
@media (max-width: 767px) {

  .oppo-media {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
    position: relative;
  }

  .oppo-video {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    background: #000;

    border-radius: 24px;
  }

  .oppo-section.active .oppo-video {
    object-fit: contain !important;
  }

}


.hero-main-video{
  width:100%;
  height:100%;
  border:0;
  object-fit: cover;
}

.mobile-video{
  display:none;
}

@media (max-width:767px){

  .desktop-video{
    display:none;
  }

  .mobile-video{
    display:block;
    object-fit:contain;
    background:#000;
  }

}


/* ── Video Facade (lazy iframe placeholder) ── */
.video-facade {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-facade:hover img {
  transform: scale(1.03);
}

/* Once swapped to iframe, match original sizing */
.video-facade iframe,
.oppo-media iframe,
.next-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}