/* =====================================================
   HITAM GLASS — CINEMATIC DESIGN ENGINE v5.0
   Ultra-Premium · Lenis · GSAP · Award-Winning UX
   ===================================================== */

/* ===== LENIS SMOOTH SCROLL OVERRIDES ===== */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* ===== SCROLL PROGRESS BAR ===== */
.cin-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--hg-glass-blue), #7ec8e3, var(--hg-gold));
  z-index: 10001;
  transition: none;
  will-change: width;
}

/* ===== GRAIN TEXTURE OVERLAY ===== */
.cin-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

/* ===== PAGE LOADING CURTAIN ===== */
.cin-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #030303;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.cin-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cin-loader-bar {
  width: 140px;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.cin-loader-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--hg-glass-blue), #7ec8e3);
  animation: cin-load-progress 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes cin-load-progress {
  0% {
    width: 0%;
  }

  60% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

.cin-loader-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

/* ===== CINEMATIC HERO — FULLSCREEN ===== */
.cin-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 650px;
  overflow: hidden;
  background: #020202;
  display: flex;
  align-items: flex-end;
}

/* Hero Slides */
.cin-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.cin-hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.cin-hero-media {
  position: absolute;
  inset: -30px;
  z-index: 1;
}

.cin-hero-media img,
.cin-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.08);
  filter: brightness(0.85);
}

.cin-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,
      rgba(2, 2, 2, 0.3) 0%,
      rgba(2, 2, 2, 0.02) 20%,
      rgba(2, 2, 2, 0.08) 45%,
      rgba(2, 2, 2, 0.55) 75%,
      rgba(2, 2, 2, 0.94) 100%);
}

/* Hero vignette edges */
.cin-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(2, 2, 2, 0.45) 100%);
  pointer-events: none;
}

/* Hero subtle side gradients */
.cin-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.35) 0%, transparent 20%),
    linear-gradient(-90deg, rgba(2, 2, 2, 0.35) 0%, transparent 20%);
  pointer-events: none;
}

.cin-hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-bottom: 110px;
  padding-top: 120px;
}

.cin-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--hg-glass-blue);
  font-size: 0.65rem;
  letter-spacing: 7px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  font-family: 'Outfit', sans-serif;
}

.cin-hero-tag::before {
  content: '';
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hg-glass-blue));
}

.cin-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 7vw, 88px);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 32px;
  max-width: 820px;
  opacity: 0;
  transform: translateY(60px);
  letter-spacing: -0.03em;
}

.cin-hero-title em {
  color: var(--hg-glass-blue);
  font-style: italic;
  position: relative;
}

.cin-hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--hg-glass-blue), transparent);
  opacity: 0.3;
}

.cin-hero-desc {
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.95;
  margin-bottom: 48px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(30px);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.cin-hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.cin-hero-btns .hg-btn-outline {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  padding: 16px 40px;
  letter-spacing: 2.5px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cin-hero-btns .hg-btn-outline:hover {
  background: var(--hg-white);
  color: var(--hg-black);
  border-color: var(--hg-white);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
}

/* Hero slide indicators */
.cin-hero-indicators {
  position: absolute;
  bottom: 55px;
  right: 55px;
  z-index: 10;
  display: flex;
  gap: 14px;
  align-items: center;
}

.cin-hero-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
  position: relative;
}

.cin-hero-dot.active {
  background: var(--hg-glass-blue);
  border-color: var(--hg-glass-blue);
  box-shadow: 0 0 20px rgba(91, 164, 217, 0.3);
}

.cin-hero-dot:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

/* Active dot progress animation */
.cin-hero-dot.active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--hg-glass-blue);
  opacity: 0;
  animation: cin-dot-pulse 6s linear infinite;
}

@keyframes cin-dot-pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

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

/* Scroll indicator */
.cin-hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.55rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}

.cin-hero-scroll-dot {
  width: 1px;
  height: 70px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.cin-hero-scroll-dot::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--hg-glass-blue));
  animation: cin-scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes cin-scroll-pulse {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

/* ===== SECTION ARCHITECTURE ===== */
.cin-section {
  position: relative;
  overflow: hidden;
}

.cin-section--dark {
  background: #040404;
  color: #fff;
}

.cin-section--charcoal {
  background: #070707;
  color: #fff;
}

.cin-section--fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.cin-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 164, 217, 0.12), transparent);
}

/* ===== ANIMATED REVEAL CLASSES ===== */
.cin-reveal {
  opacity: 0;
  transform: translateY(60px);
  will-change: transform, opacity;
}

.cin-reveal--left {
  opacity: 0;
  transform: translateX(-80px);
  will-change: transform, opacity;
}

.cin-reveal--right {
  opacity: 0;
  transform: translateX(80px);
  will-change: transform, opacity;
}

.cin-reveal--scale {
  opacity: 0;
  transform: scale(0.85);
  will-change: transform, opacity;
}

/* Stagger children */
[data-cin-stagger]>* {
  opacity: 0;
  transform: translateY(45px);
  will-change: transform, opacity;
}

/* ===== PARALLAX IMAGE CONTAINERS ===== */
.cin-parallax-wrap {
  position: relative;
  overflow: hidden;
}

.cin-parallax-img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

/* ===== IMAGE CURTAIN REVEAL ===== */
.cin-img-reveal {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
}

.cin-img-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  will-change: transform;
}

/* ===== STATS COUNTER BAR ===== */
.cin-stats {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.cin-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(91, 164, 217, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cin-stat {
  text-align: center;
  padding: 32px;
  position: relative;
}

.cin-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.cin-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.cin-stat-num span {
  color: var(--hg-glass-blue);
  font-weight: 400;
}

.cin-stat-label {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}

/* ===== ABOUT SPLIT SECTION ===== */
.cin-about {
  padding: 180px 0;
}

.cin-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.cin-about-images {
  position: relative;
  height: 640px;
}

.cin-about-img-main {
  width: 78%;
  height: 500px;
  object-fit: cover;
}

.cin-about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 340px;
  object-fit: cover;
  border: 10px solid #040404;
  z-index: 2;
}

.cin-about-badge {
  position: absolute;
  top: 16px;
  right: 44px;
  background: rgba(2, 2, 2, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 36px;
  text-align: center;
  z-index: 3;
  border: 1px solid rgba(91, 164, 217, 0.1);
}

.cin-about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--hg-glass-blue);
  line-height: 1;
}

.cin-about-badge-text {
  font-size: 0.58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}

.cin-about-text {
  color: rgba(255, 255, 255, 0.42);
  font-size: 1.02rem;
  line-height: 2;
  margin: 34px 0 48px;
  font-weight: 300;
}

.cin-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 52px;
}

.cin-about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.4s;
}

.cin-about-feature:hover {
  color: rgba(255, 255, 255, 0.8);
}

.cin-about-feature i {
  color: var(--hg-glass-blue);
  font-size: 0.55rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(91, 164, 217, 0.2);
  transition: all 0.4s;
}

.cin-about-feature:hover i {
  background: rgba(91, 164, 217, 0.1);
  border-color: rgba(91, 164, 217, 0.4);
}

/* ===== CATEGORIES SHOWCASE ===== */
.cin-categories {
  padding: 160px 0;
}

.cin-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 80px;
}

.cin-cat-card {
  position: relative;
  overflow: hidden;
  height: 440px;
  cursor: pointer;
  display: block;
}

.cin-cat-card:first-child {
  grid-row: span 2;
  height: 100%;
}

.cin-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.85) saturate(0.9);
}

.cin-cat-card:hover img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1.1);
}

.cin-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 2, 2, 0.92) 0%, rgba(2, 2, 2, 0.01) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  transition: background 0.8s;
}

.cin-cat-card:hover .cin-cat-overlay {
  background: linear-gradient(to top, rgba(2, 2, 2, 0.96) 0%, rgba(2, 2, 2, 0.15) 55%);
}

.cin-cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: -0.01em;
}

.cin-cat-card:hover .cin-cat-name {
  transform: translateY(-6px);
}

.cin-cat-sub {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.7;
  font-weight: 300;
}

.cin-cat-card:hover .cin-cat-sub {
  transform: translateY(-4px);
  opacity: 1;
}

.cin-cat-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translate(-14px, 14px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.2);
}

.cin-cat-card:hover .cin-cat-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.cin-cat-card:hover .cin-cat-arrow:hover {
  background: var(--hg-glass-blue);
  border-color: var(--hg-glass-blue);
  color: #fff;
}

/* ===== HORIZONTAL SCROLL SHOWCASE ===== */
.cin-hscroll-section {
  overflow: hidden;
  background: #020202;
  position: relative;
}

.cin-hscroll-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 164, 217, 0.1), transparent);
}

.cin-hscroll-header {
  padding: 140px 0 70px;
}

/* ===== SHOWCASE GRID (Responsive) ===== */
.cin-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.cin-showcase-card {
  position: relative;
  background: #070707;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  height: 480px;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  color: inherit;
}

.cin-showcase-card:hover {
  border-color: rgba(91, 164, 217, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.cin-showcase-card--wide {
  grid-column: span 2;
}

.cin-showcase-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cin-showcase-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0.7) 40%, rgba(5,5,5,0.1) 100%);
  transition: background 0.7s;
}

.cin-showcase-card:hover .cin-showcase-img::after {
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.5) 50%, rgba(5,5,5,0.2) 100%);
}

.cin-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(20%) brightness(0.8);
}

.cin-showcase-card:hover .cin-showcase-img img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}

.cin-showcase-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px;
}

.cin-showcase-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  transition: color 0.5s;
}

.cin-showcase-card:hover .cin-showcase-num {
  color: var(--hg-glass-blue);
}

.cin-showcase-info {
  margin-top: auto;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cin-showcase-card:hover .cin-showcase-info {
  transform: translateY(0);
}

.cin-showcase-cat {
  color: var(--hg-glass-blue);
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s 0.1s;
}

.cin-showcase-card:hover .cin-showcase-cat {
  opacity: 1;
  transform: translateY(0);
}

.cin-showcase-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.cin-showcase-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0;
  margin-bottom: 0;
  transition: all 0.5s;
}

.cin-showcase-card:hover .cin-showcase-desc {
  opacity: 1;
}

.cin-showcase-arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  opacity: 0;
  transform: scale(0.8) rotate(-45deg);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

.cin-showcase-card:hover .cin-showcase-arrow {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  background: var(--hg-glass-blue);
  border-color: var(--hg-glass-blue);
}

/* ===== FEATURED PRODUCTS ===== */
.cin-products {
  padding: 160px 0;
}

.cin-products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.cin-products-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: 'Outfit', sans-serif;
}

.cin-products-link span {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.cin-products-link:hover {
  color: var(--hg-glass-blue);
  gap: 16px;
}

.cin-products-link:hover span {
  transform: translateX(4px);
}

/* ===== SWIPER SLIDER NAV ===== */
.cin-slider-nav {
  display: flex;
  gap: 12px;
}

.cin-nav-btn {
  position: static !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.5) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  cursor: pointer;
  margin-top: 0 !important;
}

.cin-nav-btn:hover {
  background: rgba(255,255,255,0.05);
  color: #fff !important;
  border-color: rgba(255,255,255,0.3);
}

.cin-nav-btn::after {
  display: none !important; /* Hide default swiper arrows */
}

.cin-nav-btn i {
  font-size: 0.9rem;
}

.cin-slider-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.2);
  width: 10px;
  height: 10px;
  transition: all 0.4s;
}

.cin-slider-pagination .swiper-pagination-bullet-active {
  background: var(--hg-glass-blue);
  width: 30px;
  border-radius: 20px;
}

.cin-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cin-product-card {
  background: #070707;
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.cin-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91, 164, 217, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.8s;
  pointer-events: none;
  z-index: 1;
}

.cin-product-card:hover {
  border-color: rgba(91, 164, 217, 0.15);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  transform: translateY(-14px);
}

.cin-product-card:hover::before {
  opacity: 1;
}

.cin-product-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #0a0a0a;
}

.cin-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.9);
}

.cin-product-card:hover .cin-product-img img {
  transform: scale(1.08);
  filter: brightness(1);
}

.cin-product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(2, 2, 2, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px;
  font-weight: 500;
  z-index: 2;
  font-family: 'Outfit', sans-serif;
}

.cin-product-actions {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.cin-product-card:hover .cin-product-actions {
  opacity: 1;
  transform: translateY(0);
}

.cin-product-actions a {
  flex: 1;
  text-align: center;
  padding: 13px;
  background: rgba(2, 2, 2, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.4s;
  font-family: 'Outfit', sans-serif;
}

.cin-product-actions a:hover {
  background: var(--hg-glass-blue);
}

.cin-product-body {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.cin-product-cat {
  color: var(--hg-glass-blue);
  font-size: 0.6rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.cin-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.5s;
  letter-spacing: -0.01em;
}

.cin-product-card:hover .cin-product-name {
  color: var(--hg-glass-blue);
}

.cin-product-desc {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== TEXT MARQUEE ===== */
.cin-marquee {
  padding: 70px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  position: relative;
}

.cin-marquee::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(90deg, #070707, transparent);
  z-index: 2;
  pointer-events: none;
}

.cin-marquee::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(-90deg, #070707, transparent);
  z-index: 2;
  pointer-events: none;
}

.cin-marquee-title {
  text-align: center;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.62rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}

.cin-marquee-track {
  display: flex;
  animation: cin-marquee-flow 42s linear infinite;
  width: fit-content;
}

@keyframes cin-marquee-flow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cin-marquee-item {
  flex-shrink: 0;
  margin: 0 60px;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.07);
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.6s;
  letter-spacing: -0.02em;
}

.cin-marquee-item:hover {
  color: rgba(255, 255, 255, 0.35);
}

.cin-marquee-item span {
  color: var(--hg-glass-blue);
  margin: 0 60px;
  opacity: 0.25;
}

/* ===== VIDEO REELS ===== */
.cin-reels {
  padding: 140px 0;
}

.cin-reels-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cin-reels-scroll::-webkit-scrollbar {
  display: none;
}

.cin-reel-card {
  flex: 0 0 260px;
  height: 460px;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cin-reel-card:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: rgba(91, 164, 217, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cin-reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cin-reel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, transparent 40%);
  pointer-events: none;
}

.cin-reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  z-index: 3;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cin-reel-card:hover .cin-reel-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ===== GALLERY MOSAIC ===== */
.cin-gallery {
  padding: 160px 0;
}

.cin-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.cin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 330px 330px;
  gap: 10px;
}

.cin-gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.cin-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.cin-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.85) saturate(0.9);
}

.cin-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.05);
}

.cin-gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 2, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.7s;
}

.cin-gallery-item:hover .cin-gallery-hover {
  background: rgba(2, 2, 2, 0.45);
}

.cin-gallery-hover i {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0.5) rotate(-12deg);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cin-gallery-item:hover .cin-gallery-hover i {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* ===== CLIENT LOGOS ===== */
.cin-clients {
  padding: 70px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  position: relative;
}

.cin-clients::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, #040404, transparent);
  z-index: 2;
  pointer-events: none;
}

.cin-clients::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(-90deg, #040404, transparent);
  z-index: 2;
  pointer-events: none;
}

.cin-clients-title {
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.6rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}

.cin-clients-track {
  display: flex;
  align-items: center;
  animation: cin-marquee-flow 35s linear infinite;
  width: fit-content;
}

.cin-client-logo {
  flex-shrink: 0;
  height: 48px;
  margin: 0 48px;
  object-fit: contain;
  opacity: 0.3;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0) invert(1);
}

.cin-client-logo:hover {
  opacity: 0.85;
  transform: scale(1.1);
}

/* ===== TESTIMONIALS ===== */
.cin-testimonials {
  padding: 160px 0;
}

.cin-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 70px auto 0;
}

.cin-testimonial-card {
  background: rgba(255, 255, 255, 0.012);
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.cin-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 164, 217, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.8s;
}

.cin-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.45);
  border-color: rgba(91, 164, 217, 0.1);
  background: rgba(91, 164, 217, 0.015);
}

.cin-testimonial-card:hover::before {
  opacity: 1;
}

.cin-testimonial-quote {
  font-size: 3rem;
  color: var(--hg-glass-blue);
  opacity: 0.12;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 22px;
}

.cin-testimonial-text {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.94rem;
  line-height: 1.95;
  margin-bottom: 32px;
  font-style: italic;
  font-weight: 300;
}

.cin-testimonial-stars {
  color: #D4A14A;
  font-size: 0.7rem;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.cin-testimonial-author {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.cin-testimonial-role {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}

/* ===== CTA CINEMATIC ===== */
.cin-cta {
  padding: 200px 0;
  position: relative;
}

.cin-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(91, 164, 217, 0.05) 0%, transparent 55%);
}

.cin-cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cin-cta-inner .hg-section-title {
  color: #fff !important;
  margin-bottom: 28px;
}

.cin-cta-inner p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 56px;
  font-weight: 300;
}

.cin-cta-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTION HEADERS ===== */
.cin-header-center {
  text-align: center;
  margin-bottom: 80px;
}

.cin-header-center p {
  color: rgba(255, 255, 255, 0.35);
  max-width: 540px;
  margin: 22px auto 0;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .cin-about-grid {
    gap: 80px;
  }

  .cin-hscroll-panel {
    max-width: 480px;
  }
}

@media (max-width: 1024px) {
  .cin-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cin-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 260px 260px;
  }

  .cin-gallery-item:first-child {
    grid-column: span 2;
  }

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

  .cin-cat-card:first-child {
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .cin-hero {
    min-height: 100dvh;
    align-items: flex-end;
  }

  .cin-hero-content {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .cin-hero-scroll {
    display: none;
  }

  .cin-hero-indicators {
    bottom: 24px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

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

  .cin-stat:nth-child(2)::after {
    display: none;
  }

  .cin-about {
    padding: 100px 0;
  }

  .cin-about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cin-about-images {
    height: 360px;
  }

  .cin-about-img-main {
    width: 100%;
    height: 100%;
  }

  .cin-about-img-float,
  .cin-about-badge {
    display: none;
  }

  .cin-cat-grid {
    grid-template-columns: 1fr;
  }

  .cin-cat-card {
    height: 300px;
  }

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

  .cin-product-img {
    height: 200px;
  }

  .cin-products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cin-gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cin-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px;
  }

  .cin-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cin-categories,
  .cin-products,
  .cin-gallery,
  .cin-testimonials,
  .cin-reels {
    padding: 90px 0;
  }

  .cin-cta {
    padding: 100px 0;
  }

  .cin-marquee-item {
    font-size: 1.5rem;
    margin: 0 30px;
  }

  .cin-marquee-item span {
    margin: 0 30px;
  }

  .cin-showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cin-showcase-card {
    height: 420px;
  }

  .cin-showcase-card--wide {
    grid-column: span 1;
  }

  .cin-grain {
    display: none;
    /* perf on mobile */
  }

  .cin-product-card:hover {
    transform: translateY(-6px);
  }

  .cin-testimonial-card {
    padding: 36px;
  }

  .cin-testimonial-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 480px) {
  .cin-hero-content {
    padding-bottom: 65px;
  }

  .cin-hero-title {
    font-size: clamp(28px, 10vw, 40px);
  }

  .cin-hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .cin-hero-btns .hg-btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 24px;
  }

  .cin-products-grid {
    grid-template-columns: 1fr;
  }

  .cin-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .cin-gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .cin-gallery-item {
    height: 260px;
  }

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

  .cin-stat {
    padding: 20px 12px;
  }

  .cin-categories,
  .cin-products,
  .cin-gallery,
  .cin-testimonials,
  .cin-reels {
    padding: 60px 0;
  }

  .cin-cta {
    padding: 72px 0;
  }

  .cin-reel-card {
    flex: 0 0 220px;
    height: 380px;
  }

  .cin-client-logo {
    height: 36px;
    margin: 0 22px;
  }

  .cin-about-features {
    grid-template-columns: 1fr;
  }

  .cin-testimonial-card {
    padding: 28px;
  }

  .cin-about {
    padding: 70px 0;
  }

  .cin-hero-tag {
    font-size: 0.55rem;
    letter-spacing: 5px;
  }

  .cin-hero-desc {
    font-size: 0.88rem;
  }

  .cin-marquee::before,
  .cin-marquee::after {
    width: 40px;
  }

  .cin-clients::before,
  .cin-clients::after {
    width: 30px;
  }
}

/* ===== SMOOTH MAGNETIC HOVER (JS class) ===== */
.cin-magnetic {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== CUSTOM CURSOR ===== */
.cin-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(91, 164, 217, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.35s,
    background 0.35s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  display: none;
  backdrop-filter: blur(1px);
}

@media (pointer: fine) {
  .cin-cursor {
    display: block;
  }
}

.cin-cursor.hovering {
  width: 52px;
  height: 52px;
  border-color: var(--hg-glass-blue);
  background: rgba(91, 164, 217, 0.04);
}



/* ===== PERFORMANCE HELPERS ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cin-marquee-track,
  .cin-clients-track {
    animation: none !important;
  }
}