/* ============================================
   WHITE BOX MEDIA — Premium Production Website
   Complete Rebuild v2
   ============================================ */

/* ----- Custom Properties ----- */
:root {
  --bg-primary: #020817;
  --bg-secondary: #0a1628;
  --bg-tertiary: #0f1d32;
  --accent: #2dd4bf;
  --accent-dark: #14b8a6;
  --accent-glow: rgba(45, 212, 191, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glass-bg: rgba(15, 29, 50, 0.6);
  --glass-border: rgba(45, 212, 191, 0.08);
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-primary);
}

html::-webkit-scrollbar {
  width: 6px;
}

html::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

html::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   INTRO SPLASH
   ============================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #020817;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.intro.done {
  opacity: 0;
  pointer-events: none;
}

.intro__clapper {
  opacity: 0;
  transform: translateY(80px) scale(0.7);
  padding-top: 60px;
}

.intro__clapper svg {
  width: 180px;
  height: 150px;
  overflow: visible;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.clapper-top {
  transform-origin: 14px 18px;
}

@media (max-width: 768px) {
  .intro__clapper svg {
    width: 140px;
    height: 117px;
  }
}

/* ============================================
   REC INDICATOR
   ============================================ */
.rec-indicator {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(2, 8, 23, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  font-family: 'Outfit', monospace;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  opacity: 0.8;
  pointer-events: none;
  user-select: none;
}

.rec-indicator__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: recPulse 1.2s ease-in-out infinite;
}

.rec-indicator.paused .rec-indicator__dot {
  background: #f59e0b;
  animation: none;
}

.rec-indicator.paused .rec-indicator__label {
  color: #f59e0b;
}

.rec-indicator.rewinding .rec-indicator__dot {
  background: var(--accent);
  animation: none;
}

.rec-indicator.rewinding .rec-indicator__label {
  color: var(--accent);
}

.rec-indicator__label {
  color: #ef4444;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.rec-indicator__time {
  font-family: 'DM Sans', monospace;
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  min-width: 58px;
}

@keyframes recPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (max-width: 768px) {
  .rec-indicator {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    padding: 6px 10px;
    gap: 6px;
  }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
/* Viewfinder cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  will-change: transform;
}

/* Viewfinder: corner brackets + center dot */
.cursor::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--accent);
  border-radius: 2px;
  mask-image:
    linear-gradient(to right, black 8px, transparent 8px, transparent calc(100% - 8px), black calc(100% - 8px)),
    linear-gradient(to bottom, black 8px, transparent 8px, transparent calc(100% - 8px), black calc(100% - 8px));
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(to right, black 8px, transparent 8px, transparent calc(100% - 8px), black calc(100% - 8px)),
    linear-gradient(to bottom, black 8px, transparent 8px, transparent calc(100% - 8px), black calc(100% - 8px));
  -webkit-mask-composite: source-in;
  transition: inset 0.3s ease, border-color 0.3s ease;
}

.cursor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

/* Hover: viewfinder expands */
.cursor.cursor--hover {
  width: 56px;
  height: 56px;
}

.cursor.cursor--hover::after {
  width: 5px;
  height: 5px;
}

/* Text input: thin line */
.cursor.cursor--text {
  width: 3px;
  height: 28px;
}

.cursor.cursor--text::before {
  display: none;
}

.cursor.cursor--text::after {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
  top: 0;
  left: 0;
  transform: none;
}

.cursor-follower {
  display: none;
}

/* ============================================
   FLASHLIGHT EFFECT
   ============================================ */
.flashlight {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle 400px at 50% 50%, rgba(45, 212, 191, 0.03), transparent);
  will-change: background;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-heading {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-heading--center {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading--center::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: none;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: scale(1.03);
}

.btn--glow {
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.4);
  animation: pulseGlow 2.5s ease-in-out 1 forwards;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(45, 212, 191, 0.5), 0 0 80px rgba(45, 212, 191, 0.15);
  }
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.03);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn__arrow {
  transition: transform var(--transition);
  display: inline-block;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.nav.scrolled {
  background: rgba(2, 8, 23, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 212, 191, 0.1);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  z-index: 10000;
}

.nav__logo-icon {
  color: var(--accent);
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  z-index: 10000;
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
  animation: pulseGlow 2.5s ease-in-out 1 forwards;
}

.nav__cta:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  z-index: 10000;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

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

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

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(45, 212, 191, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(20, 184, 166, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 90% 80% at 50% 120%, rgba(45, 212, 191, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #020817 0%, #0a1628 40%, #071320 70%, #020817 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero__orb--1 {
  top: 10%;
  left: 8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
  animation: orbFloat1 8s ease-in-out infinite alternate;
}

.hero__orb--2 {
  bottom: 15%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  animation: orbFloat2 10s ease-in-out infinite alternate;
}

.hero__orb--3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.04) 0%, transparent 60%);
  animation: orbFloat3 12s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(40px, -30px) scale(1.2); opacity: 1; }
}

@keyframes orbFloat2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  100% { transform: translate(-30px, 20px) scale(1.15); opacity: 0.7; }
}

@keyframes orbFloat3 {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  100% { transform: translate(-45%, -55%) scale(1.1); opacity: 0.6; }
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  pointer-events: none;
  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-size: 128px 128px;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.hero__text {
  flex: 0 0 55%;
  max-width: 55%;
}

.hero__heading {
  font-family: var(--font);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-wrap: balance;
  text-align: left;
}

.hero__heading .word-wrap {
  display: inline-block;
  white-space: nowrap;
}

.hero__heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
}

/* Hero Showreel */
.hero__showreel {
  flex: 0 0 45%;
  max-width: 45%;
  opacity: 0;
  transform: translateY(30px);
}

.hero__showreel-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(45, 212, 191, 0.05);
}

.hero__showreel-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  z-index: 2;
}

.hero__showreel-thumb.hidden {
  display: none;
}

.hero__showreel-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

.hero__showreel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__showreel-thumb:hover img {
  transform: scale(1.03);
}

.hero__showreel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero__showreel-thumb:hover .hero__showreel-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   STATS
   ============================================ */
.stats {
  position: relative;
  z-index: 5;
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 40%, var(--bg-tertiary) 100%);
}

.stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.stat {
  text-align: center;
}

.stat__number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  opacity: 0.9;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  overflow: hidden;
}

.stat__suffix {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat__divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(45, 212, 191, 0.2), transparent);
}

/* ============================================
   BEHIND THE SCENES
   ============================================ */
.bts {
  padding: 60px 0 40px;
  background: var(--bg-primary);
  overflow: hidden;
}

.bts .section-heading {
  margin-bottom: 48px;
}

.bts__ticker-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
  margin-bottom: 12px;
}

.bts__ticker {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bts__ticker img {
  height: 220px;
  width: auto;
  min-width: 100px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.bts__ticker--left,
.bts__ticker--right {
  will-change: transform;
}


/* ============================================
   ABOUT (Who Are We)
   ============================================ */
.about {
  padding: 80px 0 40px;
  background: var(--bg-primary);
  overflow: visible;
  position: relative;
}

/* About — Cursor glow */
.about__cursor-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    500px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(45, 212, 191, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about:hover .about__cursor-glow {
  opacity: 1;
}

/* About — Heading character scatter */
.about__word {
  display: inline-block;
  white-space: nowrap;
}

.about__char {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

/* About — Body text sweep */
.about__body {
  position: relative;
  overflow: hidden;
}

.about__body::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
  opacity: 0;
}

.about__body.sweep::after {
  opacity: 1;
  animation: textSweep 0.6s ease-out forwards;
}

@keyframes textSweep {
  0% { left: -60%; }
  100% { left: 110%; }
}

.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text .section-heading {
  margin-bottom: 28px;
}

.about__body {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.about__quote {
  margin-top: 36px;
  padding: 24px 28px;
  border-left: 2px solid var(--accent);
  background: rgba(45, 212, 191, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
}

.about__quote-mark {
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0;
  position: relative;
  top: 12px;
  margin-right: 4px;
  font-style: normal;
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.about__process {
  width: 100%;
  max-width: 300px;
}

.process-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.process-path-fill {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}

.process-step .step-circle,
.process-step .step-icon,
.process-step .step-label {
  transition: all 0.5s ease;
}

.process-step.active .step-circle {
  opacity: 1;
  fill: rgba(45, 212, 191, 0.08);
}

.process-step.active .step-icon {
  opacity: 1;
}

.process-step.active .step-label {
  fill: #2dd4bf;
}

.process-step--final.active .step-circle {
  filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.6)) drop-shadow(0 0 30px rgba(45, 212, 191, 0.3));
}

.process-step--final.active .step-label {
  fill: #2dd4bf;
  font-size: 11px;
}

/* Process Cycle SVG (updated circular version) */
.process-cycle {
  width: 100%;
  max-width: 340px;
}

.process-cycle-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* ============================================
   ABOUT — Two Ways to Work With Us
   ============================================ */
.about__offerings {
  margin-top: 64px;
  text-align: center;
}

.about__offerings-heading {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0;
}

.about__branch-svg {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  height: 80px;
}

.about__branch-svg svg {
  width: 100%;
  height: 100%;
}

.about__offerings-cards {
  display: flex !important;
  flex-direction: row !important;
  gap: 24px;
  width: 100%;
}

.about__offering-card {
  flex: 1 1 0%;
  min-width: 0;
  background: rgba(15, 29, 50, 0.6) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(45, 212, 191, 0.08) !important;
  border-radius: 16px !important;
  padding: 32px 28px !important;
  transition: all 0.4s ease;
  cursor: none;
  text-decoration: none !important;
  color: #ffffff !important;
  display: block !important;
}

.about__offering-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 212, 191, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(45, 212, 191, 0.05);
}

.about__offering-card--highlight {
  border-color: rgba(45, 212, 191, 0.2) !important;
  background: rgba(20, 80, 65, 0.25) !important;
}

.about__offering-card--highlight:hover {
  border-color: rgba(45, 212, 191, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(45, 212, 191, 0.1);
}

.about__offering-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 212, 191, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 212, 191, 0.08);
  margin-bottom: 20px;
}

.about__offering-title {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about__offering-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about__offering-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s ease;
}

.about__offering-card:hover .about__offering-cta {
  gap: 10px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 44px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(45, 212, 191, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(45, 212, 191, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Dim & blur siblings on hover */
.services__grid:hover .service-card:not(:hover) {
  filter: blur(4px);
  opacity: 0.4;
  transform: scale(0.98);
}

/* ----- Service Card Description ----- */
.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* =============================================
   VIDEOGRAPHY CARD — REC indicator
   ============================================= */
.service-card__rec-indicator {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* Card color tints */
.service-card--video {
  background: rgba(20, 60, 90, 0.35);
  border-color: rgba(56, 152, 236, 0.12);
}
.service-card--video::before {
  background: linear-gradient(90deg, transparent, #3898ec, transparent) !important;
}
.service-card--video .service-card__icon {
  background: rgba(56, 152, 236, 0.06);
  border-color: rgba(56, 152, 236, 0.1);
}
.service-card--video .service-card__icon svg * {
  stroke: #3898ec;
}
.service-card--video:hover {
  border-color: rgba(56, 152, 236, 0.3);
}

.service-card--photo {
  background: rgba(70, 40, 90, 0.3);
  border-color: rgba(168, 120, 210, 0.12);
}
.service-card--photo::before {
  background: linear-gradient(90deg, transparent, #a878d2, transparent) !important;
}
.service-card--photo .service-card__icon {
  background: rgba(168, 120, 210, 0.06);
  border-color: rgba(168, 120, 210, 0.1);
}
.service-card--photo .service-card__icon svg * {
  stroke: #a878d2;
}
.service-card--photo:hover {
  border-color: rgba(168, 120, 210, 0.3);
}

.service-card--consult {
  background: rgba(20, 80, 65, 0.3);
  border-color: rgba(45, 212, 191, 0.12);
}
.service-card--consult .service-card__icon {
  background: rgba(45, 212, 191, 0.06);
  border-color: rgba(45, 212, 191, 0.1);
}
.service-card--consult:hover {
  border-color: rgba(45, 212, 191, 0.3);
}

.service-card--video:hover .service-card__rec-indicator {
  opacity: 1;
}

.service-card__rec-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  display: block;
}

.service-card--video:hover .service-card__rec-dot {
  animation: recPulse 1s ease-in-out infinite;
}

.service-card__rec-text {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Red tint overlay for videography */
.service-card--video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(239, 68, 68, 0.04);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card--video:hover::after {
  opacity: 1;
}

/* =============================================
   PHOTOGRAPHY CARD — Flash effect
   ============================================= */
.service-card--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

.service-card--photo:hover::after {
  animation: cameraFlash 0.3s ease-out 1;
  animation-fill-mode: forwards;
}

@keyframes cameraFlash {
  0% { opacity: 0; }
  30% { opacity: 0.8; }
  100% { opacity: 0; }
}

/* =============================================
   CONSULTATION CARD — Floating documents
   ============================================= */
.service-card__float-docs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.service-card__float-doc {
  position: absolute;
  bottom: -30px;
  color: var(--accent);
  opacity: 0;
  transition: none;
}

.service-card__float-doc--1 { left: 15%; }
.service-card__float-doc--2 { left: 40%; }
.service-card__float-doc--3 { left: 65%; }
.service-card__float-doc--4 { left: 85%; }

.service-card--consult:hover .service-card__float-doc--1 {
  animation: floatDoc 2s ease-out infinite;
  animation-delay: 0s;
}
.service-card--consult:hover .service-card__float-doc--2 {
  animation: floatDoc 2s ease-out infinite;
  animation-delay: 0.3s;
}
.service-card--consult:hover .service-card__float-doc--3 {
  animation: floatDoc 2s ease-out infinite;
  animation-delay: 0.6s;
}
.service-card--consult:hover .service-card__float-doc--4 {
  animation: floatDoc 2s ease-out infinite;
  animation-delay: 0.9s;
}

@keyframes floatDoc {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg);
  }
  20% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-400px) rotate(15deg);
  }
}

.service-card__icon {
  margin-bottom: 28px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 212, 191, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 212, 191, 0.08);
}

.service-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.service-card__list {
  margin-bottom: 32px;
}

.service-card__list li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  padding-left: 18px;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-card__list li:last-child {
  border-bottom: none;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: all var(--transition);
  cursor: none;
}

.service-card__cta span {
  transition: transform var(--transition);
  display: inline-block;
}

.service-card__cta:hover span {
  transform: translateX(4px);
}

/* =============================================
   RETAINER SERVICE CARD VARIANT
   ============================================= */
.service-card--retainer {
  grid-column: 1 / -1;
  background: rgba(20, 80, 65, 0.25);
  border-color: rgba(45, 212, 191, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.service-card--retainer::before {
  background: linear-gradient(90deg, transparent, var(--accent), transparent) !important;
}
.service-card--retainer:hover {
  border-color: rgba(45, 212, 191, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(45, 212, 191, 0.12);
}
.service-card--retainer .service-card__icon {
  background: rgba(45, 212, 191, 0.06);
  border-color: rgba(45, 212, 191, 0.1);
}

/* Animated border glow for retainer card */
.service-card--retainer::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(45deg, transparent 30%, rgba(45, 212, 191, 0.15) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: borderGlow 3s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.service-card__tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-primary);
  overflow: hidden;
}
.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 212, 191, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 20px rgba(45, 212, 191, 0.05);
}
.process-card__number {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.process-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 212, 191, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45, 212, 191, 0.08);
  margin-bottom: 20px;
}
.process-card__title {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.process-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
/* Cycle indicator at bottom */
.how-it-works__cycle {
  text-align: center;
  margin-top: 48px;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.how-it-works__cycle-arrow {
  color: var(--accent);
  animation: cycleRotate 2s ease-in-out infinite;
}
@keyframes cycleRotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(360deg); }
}

/* ============================================
   WHO WE WORK WITH (INDUSTRIES)
   ============================================ */
.industries {
  padding: 120px 0;
  background: var(--bg-secondary);
}
.industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
}
.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 212, 191, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}
.industry-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.industry-card__title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.industry-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
/* Last row centering for 3 items in row of 4 */
.industries__grid > .industry-card:nth-child(5) {
  grid-column: 1;
}

/* ============================================
   RETAINER PACKAGES PREVIEW
   ============================================ */
.retainer-preview {
  padding: 120px 0;
  background: var(--bg-primary);
}
.retainer-preview .section-heading--center {
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 64px;
}
.retainer-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.retainer-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}
.retainer-card:hover {
  transform: translateY(-10px);
  border-color: rgba(45, 212, 191, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(45, 212, 191, 0.05);
}
.retainer-card__tier {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.retainer-card__name {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.retainer-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}
.retainer-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: all var(--transition);
}
.retainer-card__cta:hover {
  gap: 12px;
}

/* Most Popular card */
.retainer-card--popular {
  border-color: rgba(45, 212, 191, 0.3);
  background: rgba(20, 80, 65, 0.25);
  box-shadow: 0 0 30px rgba(45, 212, 191, 0.08);
}
.retainer-card--popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}
.retainer-card__badge {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* ============================================
   PORTFOLIO (Horizontal Scroll)
   ============================================ */
.portfolio {
  padding: 60px 0 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.portfolio__heading {
  margin-bottom: 56px;
}

.portfolio__scroll-wrap {
  position: relative;
}


.portfolio__horizontal {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.portfolio__horizontal::-webkit-scrollbar {
  display: none;
}

.portfolio__track {
  display: flex;
  gap: 20px;
  width: max-content;
  margin: 0 auto;
  padding: 0 max(24px, calc((100vw - (520px * 5 + 20px * 4)) / 2));
}

/* Custom scrollbar below cards */
.portfolio__scrollbar {
  width: 200px;
  height: 30px;
  margin: 14px auto 0;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.portfolio__scrollbar::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  pointer-events: none;
}

.portfolio__scrollbar-thumb {
  width: 40%;
  height: 100%;
  position: absolute;
  left: 0;
  cursor: grab;
  display: flex;
  align-items: center;
}

.portfolio__scrollbar-thumb::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: rgba(45, 212, 191, 0.5);
  border-radius: 4px;
}

.portfolio__scrollbar-thumb:active {
  cursor: grabbing;
}

.portfolio-card {
  flex-shrink: 0;
  width: 520px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-card__bg img {
  transform: scale(1.08);
}

a.portfolio-card {
  text-decoration: none;
  color: inherit;
}

.portfolio-card:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px rgba(0, 0, 0, 0.3);
}

.portfolio-card__number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: -0.03em;
  z-index: 2;
}

.portfolio-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 3;
  background: linear-gradient(0deg, rgba(2, 8, 23, 0.9) 0%, transparent 100%);
}

.portfolio-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(45, 212, 191, 0.1);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.portfolio-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.portfolio-card__view {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-card__view {
  opacity: 1;
  transform: translateY(0);
}

.portfolio__see-more {
  text-align: center;
  padding: 80px 0 40px;
  position: relative;
  z-index: 5;
}

.portfolio__see-more .btn {
  font-size: 1.1rem;
  padding: 18px 48px;
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 80px 0 60px;
  background: var(--bg-secondary);
  overflow: hidden;
}

.testimonials__ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.testimonials__ticker {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

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

.testimonial-card {
  flex-shrink: 0;
  width: 400px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.testimonial-card__quote {
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 80px 0;
  background: var(--bg-primary);
}

.contact__subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-top: -40px;
  margin-bottom: 64px;
}

.contact__intro-text {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: -40px;
  margin-bottom: 16px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
  cursor: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form .btn {
  margin-top: 8px;
  font-size: 1rem;
  padding: 18px 36px;
}

.contact__success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.contact__success.show {
  display: block;
}

.contact__success h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 16px 0 8px;
}

.contact__success p {
  color: var(--text-secondary);
}

.contact__info {
  padding-top: 8px;
}

.contact__info-block {
  margin-bottom: 40px;
}

.contact__info-block h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.contact__detail:hover {
  color: var(--accent);
}

.contact__socials {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.1);
}

.social-link--sm {
  width: 38px;
  height: 38px;
}

.contact__pullquote {
  margin-top: 48px;
  padding: 28px;
  background: rgba(45, 212, 191, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  letter-spacing: -0.02em;
  position: relative;
}

.contact__pullquote-mark {
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0;
  position: relative;
  top: 14px;
  margin-right: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  opacity: 0.7;
  object-fit: contain;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   VIDEO LIGHTBOX MODAL
   ============================================ */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20000;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.video-modal__content {
  position: relative;
  width: 90vw;
  max-width: 960px;
  z-index: 1;
}

.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}

.video-modal__close:hover {
  opacity: 1;
}

.video-modal__player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-modal__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   RESPONSIVE — Tablet (1024px)
   ============================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    gap: 48px;
  }

  .contact__grid {
    gap: 48px;
  }

  .stats__grid {
    gap: 40px;
  }

  .portfolio-card {
    width: 400px;
    aspect-ratio: 16 / 9;
  }

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

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

  .how-it-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--retainer {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE — Mobile (768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  /* Restore default cursor on mobile */
  body,
  .btn,
  .service-card,
  .portfolio-card,
  .service-card__cta,
  .nav__hamburger,
  .form-group input,
  .form-group select,
  .form-group textarea {
    cursor: auto;
  }

  .cursor,
  .cursor-follower,
  .flashlight {
    display: none !important;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    background: #020817;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9999;
    padding-top: 80px;
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav__links .nav__link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }

  .hero__content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .hero__text {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero__heading {
    font-size: clamp(2rem, 8vw, 3rem);
    text-align: center;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero__showreel {
    flex: none;
    width: 100%;
    max-width: 100%;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 16px;
    display: block !important;
  }

  .hero__showreel-wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 10px;
  }

  .hero__showreel-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero__showreel-play svg {
    width: 48px;
    height: 48px;
  }

  .about__text .section-heading {
    text-align: left;
  }

  .about {
    padding: 40px 0 40px;
  }

  .about__offerings {
    margin-top: 32px;
  }

  .about__offerings-heading {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }

  .about__branch-svg {
    display: none;
  }

  .about__offerings-cards {
    flex-direction: column !important;
    gap: 16px;
  }

  .about__offering-card {
    padding: 24px 20px !important;
    background: rgba(15, 29, 50, 0.6) !important;
    border: 1px solid rgba(45, 212, 191, 0.08) !important;
    border-radius: 16px !important;
    display: block !important;
  }

  .about__offering-card--highlight {
    border-color: rgba(45, 212, 191, 0.2) !important;
    background: rgba(20, 80, 65, 0.25) !important;
  }

  .about__offering-title {
    font-size: 1.05rem;
  }

  .about__offering-desc {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }

  .about__offering-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .about__offering-icon svg {
    width: 20px;
    height: 20px;
  }

  /* Tighter service cards on mobile */
  .service-card {
    padding: 32px 24px;
  }

  .service-card__title {
    font-size: 1.2rem;
  }

  .service-card {
    background: rgba(15, 29, 50, 0.6) !important;
    border: 1px solid rgba(45, 212, 191, 0.08) !important;
    border-radius: 16px !important;
    padding: 28px 22px !important;
  }

  .service-card--video {
    background: rgba(20, 60, 90, 0.35) !important;
    border-color: rgba(56, 152, 236, 0.12) !important;
  }

  .service-card--photo {
    background: rgba(70, 40, 90, 0.3) !important;
    border-color: rgba(168, 120, 210, 0.12) !important;
  }

  .service-card--consult {
    background: rgba(20, 80, 65, 0.3) !important;
    border-color: rgba(45, 212, 191, 0.12) !important;
  }

  /* Disable blur effect on siblings for mobile */
  .services__grid:hover .service-card:not(:hover) {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .service-card:hover {
    transform: none !important;
  }

  .service-card__desc {
    font-size: 0.88rem;
  }

  .service-card__list li {
    font-size: 0.88rem;
    padding: 8px 0;
  }

  /* Tighter stats on mobile */
  .stat__number {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .stat__suffix {
    font-size: clamp(1.2rem, 3vw, 2rem);
  }

  /* Contact form tighter */
  .contact__subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .contact__pullquote {
    font-size: 1rem;
    padding: 20px;
  }

  /* Footer tighter on mobile */
  .footer__links {
    gap: 16px;
    font-size: 0.85rem;
  }

  /* BTS mobile */
  .bts {
    padding: 40px 0 0;
  }

  .bts .section-heading {
    margin-bottom: 32px;
  }

  .bts__ticker img {
    height: 140px;
    width: auto;
    min-width: 70px;
  }

  /* Video modal mobile */
  .video-modal__content {
    width: 95vw;
  }

  .video-modal__close {
    top: -36px;
    font-size: 1.6rem;
  }


  .hero__ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

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

  .about__process {
    max-width: 240px;
    margin: 0 auto;
  }

  .about__visual {
    min-height: auto;
  }

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

  .service-card--retainer {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    width: 280px;
  }

  .testimonial-card {
    min-width: 280px;
    padding: 28px;
  }

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

  .section-heading {
    text-align: center;
  }

  .rec-indicator {
    font-size: 0.6rem;
    padding: 5px 10px;
  }

  .stats__grid {
    flex-direction: column;
    gap: 32px;
  }

  .stat__divider {
    width: 40px;
    height: 1px;
  }

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

  .about__visual {
    min-height: 250px;
  }

  .about__process {
    max-width: 220px;
  }

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

  .portfolio-card {
    width: 320px;
    aspect-ratio: 16 / 9;
  }

  .portfolio-card__content {
    padding: 16px 20px;
  }

  .portfolio-card__title {
    font-size: 1rem;
  }

  .portfolio-card__view {
    font-size: 0.75rem;
    margin-top: 6px;
  }

  .portfolio-card__number {
    font-size: 2.5rem;
    top: 12px;
    right: 16px;
  }

  .portfolio__track {
    padding: 0 24px;
    margin: 0;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__info {
    padding-top: 0;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .testimonial-card {
    width: 300px;
  }

  .section-heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  /* New sections mobile */
  .retainer-preview__grid {
    grid-template-columns: 1fr;
  }

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

  .how-it-works__grid {
    grid-template-columns: 1fr;
  }
}
