/* =====================================================
   HITAM GLASS — CINEMATIC DESIGN ENGINE v3.0
   Ultra-smooth scrolling · GSAP · Lenis · Premium 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;
}

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

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

.cin-loader-bar {
  width: 120px;
  height: 2px;
  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.5s ease-out forwards;
}

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

.cin-loader-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

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

/* Hero Slides */
.cin-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s 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: -20px;
  z-index: 1;
}

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

.cin-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(3,3,3,0.25) 0%,
    rgba(3,3,3,0.05) 25%,
    rgba(3,3,3,0.15) 50%,
    rgba(3,3,3,0.65) 80%,
    rgba(3,3,3,0.92) 100%
  );
}

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

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

.cin-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--hg-glass-blue);
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
}

.cin-hero-tag::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--hg-glass-blue);
}

.cin-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 7.5vw, 92px);
  color: #fff;
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 28px;
  max-width: 860px;
  opacity: 0;
  transform: translateY(50px);
}

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

.cin-hero-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(30px);
}

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

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

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

.cin-hero-dot.active {
  background: var(--hg-glass-blue);
  border-color: var(--hg-glass-blue);
  transform: scale(1.3);
}

.cin-hero-dot:hover:not(.active) {
  border-color: rgba(255,255,255,0.7);
}

/* Scroll indicator */
.cin-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.2);
  font-size: 0.58rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}

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

.cin-hero-scroll-dot::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hg-glass-blue);
  animation: cin-scroll-pulse 2.2s 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: #050505;
  color: #fff;
}

.cin-section--charcoal {
  background: #080808;
  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.15), 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(40px);
  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.3);
  will-change: transform;
}

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

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

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

.cin-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(255,255,255,0.05);
}

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

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

.cin-stat-label {
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

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

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

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

.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: 12px solid #050505;
  z-index: 2;
}

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

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

.cin-about-badge-text {
  font-size: 0.62rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
}

.cin-about-text {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 30px 0 44px;
}

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

.cin-about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.cin-about-feature i {
  color: var(--hg-glass-blue);
  font-size: 0.6rem;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(91,164,217,0.25);
}

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

.cin-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  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.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cin-cat-card:hover img {
  transform: scale(1.12);
}

.cin-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,3,3,0.92) 0%, rgba(3,3,3,0.02) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: background 0.6s;
}

.cin-cat-card:hover .cin-cat-overlay {
  background: linear-gradient(to top, rgba(3,3,3,0.96) 0%, rgba(3,3,3,0.2) 50%);
}

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

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

.cin-cat-sub {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.cin-cat-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translate(-12px, 12px);
}

.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: #030303;
}

.cin-hscroll-header {
  padding: 120px 0 60px;
}

.cin-hscroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: fit-content;
  will-change: transform;
  padding-bottom: 80px;
}

.cin-hscroll-panel {
  flex: 0 0 auto;
  width: 80vw;
  max-width: 580px;
  height: 72vh;
  padding: 0 16px;
  position: relative;
}

.cin-hscroll-panel-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.5s;
}

.cin-hscroll-panel-inner:hover {
  border-color: rgba(91,164,217,0.15);
}

.cin-hscroll-panel-inner img {
  width: 100%;
  height: 68%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cin-hscroll-panel-inner:hover img {
  transform: scale(1.06);
}

.cin-hscroll-body {
  padding: 28px 36px;
}

.cin-hscroll-cat {
  color: var(--hg-glass-blue);
  font-size: 0.65rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.cin-hscroll-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.cin-hscroll-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ===== FEATURED PRODUCTS ===== */
.cin-products {
  padding: 140px 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.5);
  font-size: 0.76rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s;
}

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

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

.cin-product-card {
  background: #090909;
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cin-product-card:hover {
  border-color: rgba(91,164,217,0.2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: translateY(-12px);
}

.cin-product-img {
  position: relative;
  height: 290px;
  overflow: hidden;
  background: #111;
}

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

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

.cin-product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(3,3,3,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  font-weight: 600;
}

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

.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(3,3,3,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
}

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

.cin-product-body {
  padding: 28px;
}

.cin-product-cat {
  color: var(--hg-glass-blue);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.cin-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.4s;
}

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

.cin-product-desc {
  color: rgba(255,255,255,0.38);
  font-size: 0.85rem;
  line-height: 1.65;
}

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

.cin-marquee-title {
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.25);
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.cin-marquee-track {
  display: flex;
  animation: cin-marquee-flow 38s 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 55px;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: rgba(255,255,255,0.1);
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.4s;
}

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

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

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

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

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

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

.cin-reel-card:hover {
  transform: scale(1.02);
}

.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.7) 0%, transparent 35%);
  pointer-events: none;
}

.cin-reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  z-index: 3;
  opacity: 0;
  transition: all 0.5s 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: 140px 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: 12px;
}

.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.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cin-gallery-item:hover img {
  transform: scale(1.08);
}

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

.cin-gallery-item:hover .cin-gallery-hover {
  background: rgba(3,3,3,0.5);
}

.cin-gallery-hover i {
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transform: scale(0.6) rotate(-8deg);
  transition: all 0.6s 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: 64px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.cin-clients-title {
  text-align: center;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.22);
  font-size: 0.66rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}

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

.cin-client-logo {
  flex-shrink: 0;
  height: 52px;
  margin: 0 44px;
  object-fit: contain;
  opacity: 0.4;
  transition: all 0.5s;
  filter: brightness(0) invert(1);
}

.cin-client-logo:hover {
  opacity: 1;
  transform: scale(1.12);
}

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

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

.cin-testimonial-card {
  background: rgba(255,255,255,0.015);
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cin-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  border-color: rgba(91,164,217,0.12);
  background: rgba(91,164,217,0.02);
}

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

.cin-testimonial-text {
  color: rgba(255,255,255,0.48);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 30px;
  font-style: italic;
}

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

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

.cin-testimonial-role {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

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

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

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

.cin-cta-inner p {
  color: rgba(255,255,255,0.4);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 52px;
}

.cin-cta-btns {
  display: flex;
  gap: 16px;
  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.4);
  max-width: 560px;
  margin: 20px auto 0;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== 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-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 270px 270px;
  }
  .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;
  }
  .cin-hscroll-panel {
    width: 75vw;
    max-width: 420px;
  }
}

@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: 90px 0;
  }
  .cin-about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .cin-about-images {
    height: 380px;
  }
  .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: 320px;
  }
  .cin-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .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;
  }
  .cin-categories,
  .cin-products,
  .cin-gallery,
  .cin-testimonials,
  .cin-reels {
    padding: 80px 0;
  }
  .cin-cta {
    padding: 100px 0;
  }
  .cin-marquee-item {
    font-size: 1.4rem;
    margin: 0 28px;
  }
  .cin-marquee-item span {
    margin: 0 28px;
  }
  .cin-hscroll-panel {
    width: 82vw;
    height: 60vh;
  }
  .cin-hscroll-header {
    padding: 80px 0 40px;
  }
}

@media (max-width: 480px) {
  .cin-hero-content {
    padding-bottom: 70px;
  }
  .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-categories,
  .cin-products,
  .cin-gallery,
  .cin-testimonials,
  .cin-reels {
    padding: 56px 0;
  }
  .cin-cta {
    padding: 72px 0;
  }
  .cin-reel-card {
    flex: 0 0 220px;
    height: 380px;
  }
  .cin-client-logo {
    height: 38px;
    margin: 0 20px;
  }
  .cin-about-features {
    grid-template-columns: 1fr;
  }
  .cin-hscroll-panel {
    width: 88vw;
    height: 55vh;
  }
  .cin-testimonial-card {
    padding: 32px;
  }
}

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

/* ===== CUSTOM CURSOR (optional enhancement) ===== */
.cin-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(91,164,217,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  display: none;
}

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

.cin-cursor.hovering {
  width: 50px;
  height: 50px;
  border-color: var(--hg-glass-blue);
}
