:root {
  --bg-color: #000000;
  --surface-dark: #0a0a0a;
  --surface-card: #0d0d0d;
  --border-gray: rgba(255, 255, 255, 0.15);

  --accent-coral: #FF5A36;
  --accent-coral-hover: #ff7456;
  --token-coral-dim: #99331e;
  --token-coral-glow: rgba(255, 90, 54, 0.3);

  --text-white: #ffffff;
  --text-gray: #cccccc;
  --text-dim: #888888;

  --about-cube-w: clamp(320px, 90vw, 940px);
  --about-cube-h: clamp(180px, 30vh, 250px);
  --about-cube-half: calc(var(--about-cube-h) / 2);
}

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

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

body {
  width: 100%;
  min-width: 320px;
  background-color: var(--bg-color);
  color: var(--text-white);
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

img, video, svg, canvas, iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-coral);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.box-2 {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.box-2.visible {
  opacity: 1;
  visibility: visible;
}

.main-content-curtain {
  position: relative;
  z-index: 10;
  background-color: var(--bg-color);
  box-shadow: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(12px, 2.2vw, 20px) clamp(20px, 4vw, 50px);
  z-index: 1000;
  pointer-events: none;
}

.brand-logo-link {
  position: relative;
  left: auto;
  pointer-events: auto;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.4s ease, transform 0.3s ease;
}

.brand-logo-link.hidden {
  opacity: 0;
  pointer-events: none;
}

.brand-logo-link:hover {
  transform: scale(1.05);
}

.haaz-brand-logo {
  width: clamp(38px, 4vw, 48px);
  height: auto;
}

.hamburger-btn {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
  pointer-events: auto;
}

.hamburger-btn span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

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

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

nav {
  pointer-events: auto;
  margin: 0 auto;
  max-width: 85vw;
}

.nav-pill-container {
  display: flex;
  list-style: none;
  gap: clamp(6px, 1.2vw, 14px);
  background: rgba(10, 10, 10, 0.92);
  padding: 6px clamp(12px, 2vw, 20px);
  border-radius: 40px;
  border: 1px solid var(--border-gray);
  backdrop-filter: blur(12px);
  align-items: center;
  overflow-x: auto; 
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-pill-container::-webkit-scrollbar {
  display: none;
}

.nav-link {
  color: #888888;
  text-decoration: none;
  font-size: clamp(0.72rem, 1.5vw, 0.85rem);
  font-weight: 500;
  padding: 5px clamp(8px, 1.5vw, 14px);
  border-radius: 20px;
  transition: color 0.3s ease;
  display: inline-block;
}

.nav-link:hover, .nav-link:focus {
  color: var(--text-white);
  outline: none;
}

.services-bar {
  position: fixed;
  width: 100%;
  top: clamp(65px, 10vh, 80px);
  left: 0;
  overflow: hidden;
  z-index: 90;
  display: flex;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.services-bar.hidden {
  opacity: 0;
  visibility: hidden;
}

.services-track {
  display: flex;
  width: max-content;
  animation: marqueeLoop 32s linear infinite;
  will-change: transform;
}

.track-group {
  display: flex;
  gap: clamp(16px, 3vw, 24px);
  padding-right: clamp(16px, 3vw, 24px);
  white-space: nowrap;
}

.track-group span {
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  color: #666666;
  display: flex;
  align-items: center;
}

.track-group span strong {
  color: var(--accent-coral);
  margin-right: 6px;
  font-size: clamp(0.75rem, 1.4vw, 0.85rem);
}

@keyframes marqueeLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   1. HERO SECTION & VIDEO + LOWER SOUND BUTTON
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(90px, 14vh, 120px) 4vw clamp(30px, 6vh, 60px);
  background-color: var(--bg-color);
}

.hero-video-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.65;
  filter: saturate(1.1) contrast(1.05);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.hero-sound-btn {
  position: absolute;
  bottom: clamp(40px, 8vh, 70px);
  right: clamp(20px, 5vw, 50px);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 90, 54, 0.5);
  color: var(--accent-coral);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  backdrop-filter: blur(12px);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  pointer-events: auto;
}

.hero-sound-btn:hover {
  transform: scale(1.05);
  background: var(--accent-coral);
  color: #ffffff;
  border-color: var(--accent-coral);
  box-shadow: 0 0 20px var(--token-coral-glow);
}

.sound-wave-bars {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 14px;
}

.sound-wave-bars span {
  display: inline-block;
  width: 2.5px;
  height: 4px;
  background-color: currentColor;
  border-radius: 2px;
  transition: height 0.2s ease;
}

.hero-sound-btn.playing .sound-wave-bars span:nth-child(1) { animation: wavePulse 0.6s infinite ease-in-out alternate; }
.hero-sound-btn.playing .sound-wave-bars span:nth-child(2) { animation: wavePulse 0.9s infinite ease-in-out 0.2s alternate; }
.hero-sound-btn.playing .sound-wave-bars span:nth-child(3) { animation: wavePulse 0.7s infinite ease-in-out 0.4s alternate; }
.hero-sound-btn.playing .sound-wave-bars span:nth-child(4) { animation: wavePulse 0.8s infinite ease-in-out 0.1s alternate; }

@keyframes wavePulse {
  0% { height: 3px; }
  100% { height: 14px; }
}

.hero-center-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto 0;
  max-width: 1100px;
  padding: 0 10px;
}

.hero-tagline-kicker {
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  font-weight: 800;
  letter-spacing: clamp(3px, 0.6vw, 6px);
  color: var(--accent-coral);
  text-transform: uppercase;
  margin-bottom: clamp(12px, 2vh, 20px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-brand-title {
  font-size: clamp(3.2rem, 11vw, 9.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--text-white);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 36px);
  user-select: none;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.85);
}

.hero-brand-title .word {
  display: inline-flex;
  white-space: nowrap;
}

.hero-brand-title .word-studio {
  color: var(--accent-coral);
}

.hero-brand-title .char {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-statement-lead {
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--text-gray);
  margin-top: clamp(16px, 3vh, 28px);
  letter-spacing: 0.5px;
  max-width: 780px;
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-bottom-grid {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1320px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
}

.left-info {
  font-size: clamp(0.75rem, 1.1vw, 0.88rem);
  color: #e0e0e0;
  line-height: 1.5;
  max-width: 380px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.btn-projects-pill {
  justify-self: center;
  background: var(--text-white);
  color: var(--bg-color);
  padding: clamp(10px, 1.6vw, 13px) clamp(24px, 3.2vw, 38px);
  border-radius: 40px;
  font-size: clamp(0.78rem, 1.3vw, 0.88rem);
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(0,0,0,0.8);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-projects-pill:hover, .btn-projects-pill:focus-visible {
  transform: scale(1.05) translateY(-2px);
  background: var(--accent-coral);
  color: #ffffff;
  box-shadow: 0 10px 30px var(--token-coral-glow);
  outline: none;
}

.right-info {
  font-size: clamp(0.72rem, 1.1vw, 0.85rem);
  color: #e0e0e0;
  line-height: 1.5;
  text-align: right;
  letter-spacing: 0.5px;
  justify-self: end;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   2. ABOUT US SECTION
   ========================================================================== */
.about-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  overflow: hidden;
  padding: 0 4vw;
}

.about-bg-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(2.2rem, 9.5vw, 8.5rem);
  font-weight: 900;
  color: var(--text-white);
  text-align: center;
  user-select: none;
  z-index: 1;
  letter-spacing: -3px;
  white-space: nowrap;
  width: 100%;
}

.blueprint-scene {
  width: var(--about-cube-w);
  height: var(--about-cube-h);
  perspective: 1400px;
  position: relative;
  z-index: 10;
  margin-top: clamp(20px, 5vh, 40px);
  opacity: 0.35; 
  transform: translateY(180px) scale(0.58);
  transform-origin: center center;
}

.blueprint-3d-cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.blueprint-face {
  position: absolute;
  width: var(--about-cube-w);
  height: var(--about-cube-h);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  background: var(--bg-color);
  padding: clamp(18px, 3.5vw, 32px) clamp(20px, 4.5vw, 54px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.95);
  backface-visibility: visible;
}

.face-1 { transform: rotateX(  0deg) translateZ(var(--about-cube-half)); }
.face-2 { transform: rotateX(-90deg) translateZ(var(--about-cube-half)); }
.face-3 { transform: rotateX(-180deg) translateZ(var(--about-cube-half)); }
.face-4 { transform: rotateX(-270deg) translateZ(var(--about-cube-half)); }

.step-info {
  max-width: 72%;
}

.step-tagline {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--accent-coral);
  font-style: italic;
  margin-bottom: 6px;
}

.step-text {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--text-white);
  line-height: 1.4;
}

.step-num-big {
  font-size: clamp(3.5rem, 9vw, 7.2rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: -2px;
  transform: skewY(-5deg) rotate(-3deg);
  user-select: none;
}

/* ==========================================================================
   3. SERVICES SECTION
   ========================================================================== */
.services-list-section {
  width: 100vw;
  background-color: var(--bg-color);
}

.services-list-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  gap: clamp(40px, 8vw, 100px);
}

.services-left-col {
  display: flex;
  flex-direction: column;
}

.services-main-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem); 
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: -1px;
}

.services-sub-statement {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-top: 12px;
  line-height: 1.5;
}

.services-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-row {
  display: flex;
  flex-flow: row wrap; 
  align-items: flex-start;
  gap: clamp(16px, 3vw, 32px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0; 
  transform: translateY(40px);
}

.serv-header-flex {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 24px);
  flex-wrap: nowrap;
}

.serv-num {
  font-size: clamp(3rem, 5vw, 4.5rem); 
  font-weight: 900;
  color: var(--accent-coral);
  line-height: 0.9;
  flex-shrink: 0;
}

.serv-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem); 
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
  padding-top: 4px;
}

.serv-desc {
  font-size: clamp(1rem, 1.2vw, 1.125rem); 
  font-weight: 200;
  color: var(--text-gray);
  line-height: 1.5;
  max-width: 600px;
}

.price-request-block {
  margin-top: 20px;
  padding: clamp(40px, 8vh, 70px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  transform: translateY(40px);
}

.price-req-heading {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -2px;
}

.price-req-sub {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--accent-coral);
}

.price-req-desc {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 10px;
}

.btn-quote-pill {
  background: var(--text-white);
  color: var(--bg-color);
  text-decoration: none;
  padding: clamp(10px, 2vw, 14px) clamp(28px, 4vw, 40px);
  border-radius: 30px;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0,0,0,0.8);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-quote-pill:hover, .btn-quote-pill:focus-visible {
  transform: scale(1.05);
  background: var(--accent-coral);
  color: #ffffff;
  outline: none;
}

/* ==========================================================================
   4. PRODUCTION PACKAGES SECTION
   ========================================================================== */
.production-packages-section {
  width: 100vw;
  background-color: var(--surface-dark);
  padding: clamp(80px, 12vh, 140px) 6vw;
  position: relative;
}

.production-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-badge-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vh, 70px);
}

.production-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 14px;
}

.production-intro {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-gray);
  line-height: 1.6;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.package-card {
  background: var(--surface-card);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 54, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.package-card.featured {
  border-color: var(--accent-coral);
  box-shadow: 0 0 35px var(--token-coral-glow);
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent-coral);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
}

.package-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.package-badge.highlight {
  color: var(--accent-coral);
}

.package-name {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}

.package-sub {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 24px;
}

.package-specs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  margin-bottom: 24px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #dddddd;
  line-height: 1.4;
}

.spec-icon {
  font-size: 1.1rem;
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.price-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
}

.price-box.secondary {
  opacity: 0.85;
}

.price-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.price-val {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 900;
  color: var(--text-white);
}

.currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-coral);
}

.price-note {
  font-size: 0.75rem;
  color: #777777;
  margin-top: 4px;
}

.terms-note {
  display: block;
  font-size: 0.75rem;
  color: #666666;
  font-style: italic;
  margin-bottom: 16px;
}

.btn-package-select {
  display: block;
  text-align: center;
  background: var(--text-white);
  color: var(--bg-color);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 30px;
  transition: all 0.25s ease;
}

.btn-package-select:hover {
  background: var(--accent-coral);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-package-select.highlight {
  background: var(--accent-coral);
  color: #ffffff;
}

.btn-package-select.highlight:hover {
  background: var(--accent-coral-hover);
}

/* ==========================================================================
   5. OUR PROJECTS SECTION — 9:16 VERTICAL COMMERCIAL REELS CAROUSEL
   ========================================================================== */
.projects-horizontal-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.projects-horizontal-wrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding: 0 clamp(40px, 8vw, 120px);
  width: max-content;
  height: 100%;
}

.projects-panel {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title-panel {
  width: clamp(280px, 32vw, 460px);
}

.projects-horiz-main-title {
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}

.projects-horiz-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  color: var(--text-gray);
  line-height: 1.6;
}

.sharp-project-item {
  display: block;
  width: clamp(240px, 20vw, 320px);
  height: clamp(420px, 65vh, 580px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
  background: #000000;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.sharp-project-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-coral);
  box-shadow: 0 20px 45px var(--token-coral-glow);
}

.reel-video-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

.reel-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}

.sharp-project-item:hover .reel-video-element {
  transform: scale(1.04);
}

.sharp-proj-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 15%, transparent);
  color: var(--text-white);
  z-index: 5;
}

.sharp-proj-cat {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-coral);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sharp-proj-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 4px;
  line-height: 1.3;
}

/* ==========================================================================
   6. KEY METRICS SECTION
   ========================================================================== */
.metrics-section {
  min-height: 100vh;
  width: 100vw;
  padding: clamp(80px, 12vh, 120px) 6vw;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
}

.metrics-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.metrics-staggered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 5vh, 60px) clamp(20px, 4vw, 60px);
  align-items: start;
}

.metrics-title-cell {
  grid-column: 1;
  grid-row: 1;
}

.metrics-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--text-white);
  letter-spacing: -2px;
}

.card-500 { grid-column: 2; grid-row: 1; }
.card-10  { grid-column: 1; grid-row: 2; }
.card-300 { grid-column: 2; grid-row: 2; }
.card-98  { grid-column: 3; grid-row: 2; position: relative; }
.card-50  { grid-column: 2; grid-row: 3; }
.card-45  { grid-column: 3; grid-row: 3; }

.metric-card {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--accent-coral);
  line-height: 1;
  margin-bottom: 10px;
}

.metric-label {
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.metric-desc {
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  color: var(--text-gray);
  line-height: 1.5;
  max-width: 250px;
}

/* ==========================================================================
   7. CONTACT FORM SECTION
   ========================================================================== */
.contact-form-section {
  width: 100vw;
  min-height: 100vh;
  background-color: var(--bg-color);
  padding: clamp(80px, 12vh, 140px) 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-form-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.contact-form-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-coral);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-main-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.05;
  letter-spacing: -2px;
}

.accent-text {
  color: var(--accent-coral);
}

.contact-subtitle {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 460px;
}

.contact-direct-info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-gray);
}

.direct-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 0.75rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-value:hover {
  color: var(--accent-coral);
}

.highlight-link {
  color: var(--accent-coral);
}

.haaz-contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--surface-card);
  padding: clamp(24px, 4vw, 44px);
  border-radius: 16px;
  border: 1px solid var(--border-gray);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #999999;
  text-transform: uppercase;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-coral);
  background: rgba(255, 90, 54, 0.03);
  box-shadow: 0 0 15px var(--token-coral-glow);
}

.service-pills-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.pill-check {
  cursor: pointer;
}

.pill-check input {
  display: none;
}

.pill-check span {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gray);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #aaaaaa;
  transition: all 0.25s ease;
}

.pill-check input:checked + span {
  background: var(--accent-coral);
  color: #ffffff;
  border-color: var(--accent-coral);
  font-weight: 700;
  box-shadow: 0 0 12px var(--token-coral-glow);
}

.btn-submit-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent-coral);
  color: #ffffff;
  padding: 15px 36px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  margin-top: 6px;
  align-self: flex-start;
  width: fit-content;
}

.btn-submit-form:hover, .btn-submit-form:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-coral-hover);
  box-shadow: 0 10px 25px var(--token-coral-glow);
  outline: none;
}

.submit-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn-submit-form:hover .submit-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   8. FOOTER / CONTACT SECTION
   ========================================================================== */
.footer-neon-section {
  position: relative;
  z-index: 5;
  width: 100vw;
  min-height: 100vh;
  background-color: var(--accent-coral);
  color: #ffffff;
  padding: clamp(40px, 6vh, 80px) clamp(20px, 4vw, 50px) clamp(20px, 4vh, 40px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 5vh, 60px);
}

.footer-top-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 40px);
  width: 100%;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.contact-col {
  width: 32%;
  min-width: 240px;
  gap: 24px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  color: #000000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

.footer-address-block {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 220px;
}

.footer-address-text {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4em;
}

.footer-mail-tel-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-p {
  margin: 0;
}

.footer-link-p a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.footer-link-p a:hover, .footer-link-p a:focus-visible {
  text-decoration: underline;
  color: #000000;
  outline: none;
}

.btn-footer-quote-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 12px 38px;
  background-color: #000000;
  border-radius: 96px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px 0px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.btn-footer-quote-pill:hover, .btn-footer-quote-pill:focus-visible {
  transform: scale(1.05);
  outline: none;
}

.btn-text-content {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  white-space: pre;
}

.btn-arrow-icon {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 20px;
  top: calc(50% - 9px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--accent-coral);
}

.footer-sublinks-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-meta-left, .footer-meta-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-meta-left a, .footer-meta-right a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.footer-meta-left a:hover, .footer-meta-right a:hover {
  text-decoration: underline;
}

.footer-giant-title {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  margin-top: 10px;
}

.footer-svg-watermark {
  width: 100%;
  max-width: 1000px;
  height: auto;
}

.watermark-svg-text {
  font-size: 130px;
  font-weight: 900;
  fill: rgba(0, 0, 0, 0.12);
  letter-spacing: -2px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (min-width: 1024px) {
  .services-list-section {
    height: 100vh; 
    overflow: hidden; 
    display: flex;
    align-items: center;
    padding: clamp(80px, 10vh, 120px) 6vw; 
  }
  .services-list-container {
    height: 100%;
    grid-template-columns: minmax(300px, 400px) 1fr;
  }
  .services-left-col {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
  }
  .services-items-wrapper {
    height: 100%;
    overflow-y: auto; 
    overflow-x: hidden;
    padding-bottom: 20vh;
    pointer-events: none; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
  }
  .services-items-wrapper::-webkit-scrollbar {
    display: none;
  }
  .service-row, .price-request-block {
    pointer-events: auto; 
  }
}

@media (max-width: 1023px) {
  header { padding: 12px 20px; }
  
  .hamburger-btn {
    display: flex;
  }

  nav ul.nav-pill-container {
    position: fixed;
    top: 75px;
    right: 20px;
    left: 20px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.96);
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border-gray);
    backdrop-filter: blur(20px);
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  }

  nav ul.nav-pill-container.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .services-list-section {
    padding: clamp(100px, 12vh, 140px) 6vw;
    height: auto;
  }
  .services-list-container { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  .services-left-col { 
    position: static; 
    width: 100%; 
    height: auto;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .sharp-project-item {
    width: 260px;
    height: 460px;
  }

  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .btn-submit-form {
    width: 100%;
  }

  .footer-top-grid {
    flex-wrap: wrap;
    gap: 28px;
  }
  .contact-col {
    width: 100%;
    gap: 20px;
  }

  .metrics-staggered-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-title-cell { grid-column: 1; grid-row: 1; }
  .card-500          { grid-column: 2; grid-row: 1; }
  .card-10           { grid-column: 1; grid-row: 2; }
  .card-300          { grid-column: 2; grid-row: 2; }
  .card-98           { grid-column: 1; grid-row: 3; }
  .card-50           { grid-column: 2; grid-row: 3; }
  .card-45           { grid-column: 1 / span 2; grid-row: 4; }
}

@media (max-width: 767px) {
  header { justify-content: space-between; }
  .brand-logo-link { position: static; }

  .hero-video-bg-wrapper {
    top: 0;
    height: 100%;
  }
  .hero-video {
    object-fit: cover;
    object-position: center center;
  }
  
  .hero-sound-btn {
    bottom: 25px;
    right: 16px;
    padding: 6px 12px;
    font-size: 0.68rem;
  }

  .sharp-project-item {
    width: 220px;
    height: 390px;
  }

  .hero-bottom-grid { 
    grid-template-columns: 1fr; 
    gap: 16px; 
    text-align: center; 
  }
  .left-info { max-width: 100%; order: 2; font-size: 0.76rem; }
  .btn-projects-pill { order: 1; width: 100%; max-width: 280px; margin: 0 auto; }
  .right-info { order: 3; text-align: center; justify-self: center; font-size: 0.72rem; }
  
  .serv-header-flex { flex-direction: column; gap: 4px; }
  .serv-title { padding-top: 0; }

  .form-row-grid {
    grid-template-columns: 1fr;
  }

  .footer-neon-section {
    padding: 40px 16px 20px;
    min-height: auto;
  }
  .footer-top-grid {
    flex-direction: column;
    gap: 20px;
  }
  .watermark-svg-text {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 60px 4vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand-title .char {
    opacity: 1 !important;
    transform: none !important;
  }
  .services-track {
    animation: none !important;
  }
  .sound-wave-bars span {
    animation: none !important;
  }
}