/* ==========================================================================
   FALHEN MEDIA — BRAND STYLESHEET
   Replicated to match falhen.com exact visual design & stage lighting hero
   ========================================================================== */

:root {
  --bg-dark: #09090b;
  --bg-card: rgba(18, 18, 22, 0.75);
  --bg-card-hover: rgba(28, 28, 35, 0.85);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-red-glow: rgba(220, 38, 38, 0.35);

  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;

  --accent-red: #dc2626;
  --accent-red-hover: #b91c1c;
  --accent-red-light: #ef4444;
  --accent-coral: #ff5252;
  --accent-gold: #f59e0b;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: var(--accent-red-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-title span {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-red-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b91c1c 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
  background: linear-gradient(135deg, #ef4444 0%, var(--accent-red) 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* --- Header Navigation (Replicated from falhen.com) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(9, 9, 11, 0.78) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.nav-center {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #d4d4d8;
  padding: 6px 14px;
  border-radius: 8px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent-red);
  border-radius: 2px;
}

.dropdown-arrow {
  font-size: 0.45rem;
  transition: transform 0.2s ease;
}

.nav-item.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* --- Mega Dropdown Menu (Exact Match for falhen.com) --- */
.nav-item.dropdown:hover .nav-link {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(12px);
  background: rgba(14, 14, 17, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  width: 640px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.nav-item.dropdown:hover .mega-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(6px);
}

.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.mega-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  background: transparent;
}

.mega-dropdown-item:hover {
  background: rgba(60, 15, 18, 0.55);
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.18);
  transform: translateY(-1px);
}

.mega-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.14);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 10px;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.25s ease;
}

.mega-dropdown-item:hover .mega-icon-box {
  background: #dc2626;
  border-color: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(220, 38, 38, 0.7);
}

.mega-item-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.mega-dropdown-item:hover .mega-item-title {
  color: #ff6b6b;
}

.mega-item-subtitle {
  color: #a1a1aa;
  font-size: 0.82rem;
  font-weight: 400;
  margin-top: 3px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.mega-dropdown-item:hover .mega-item-subtitle {
  color: #d4d4d8;
}

.mega-dropdown-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.mega-footer-count {
  color: #71717a;
  font-weight: 500;
}

.mega-footer-link {
  color: #ef4444;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.mega-footer-link:hover {
  color: #f87171;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-red-light);
}

.btn-contact-nav {
  background: var(--accent-red);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-contact-nav:hover {
  background: var(--accent-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.nav-toggle {
  display: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}

.mobile-nav-icon,
.mobile-nav-badge,
.mobile-menu-cta,
.mobile-sub-menu,
.services-mobile-controls,
.team-mobile-controls,
.mobile-bottom-dock {
  display: none;
}

/* --- Hero Section (Exact Replica of Screenshot) --- */
.hero-stage {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 80px 0;
  overflow: hidden;
  background-color: #09090b;
}

.hero-bg-animated {
  position: absolute;
  top: -40px;
  bottom: -40px;
  left: -40px;
  right: -40px;
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1.03);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(9, 9, 11, 0.1) 0%, rgba(9, 9, 11, 0.55) 80%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.15) 0%, rgba(9, 9, 11, 0.8) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5253 40%, #ff5252 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e4e4e7;
  max-width: 720px;
  margin: 0 auto 50px auto !important;
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 90px !important;
}

.btn-hero-red {
  background: #dc2626;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
  transition: var(--transition-smooth);
}

.btn-hero-red:hover {
  background: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.7);
}

.btn-hero-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.btn-hero-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-play-icon {
  width: 32px;
  height: 32px;
  background: #dc2626;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.6);
}

/* --- Trusted Brands Section (Exact Replica of falhen.com) --- */
.brands-section {
  padding: 50px 0;
  background: #09090b;
  border-top: 1px solid rgba(220, 38, 38, 0.25);
  border-bottom: 1px solid rgba(220, 38, 38, 0.25);
  position: relative;
  overflow: hidden;
}

.brands-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 30px;
}

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

.brands-ticker-wrapper::before,
.brands-ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands-ticker-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #09090b 0%, transparent 100%);
}

.brands-ticker-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, #09090b 0%, transparent 100%);
}

.brands-ticker-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marqueeTicker 28s linear infinite;
}

.brands-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeTicker {
  0% {
    transform: translateX(0);
  }

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

.brand-card {
  background: rgba(18, 18, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 22px 48px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.brand-card i {
  font-size: 1.4rem;
  color: #ffffff;
  transition: color 0.25s ease;
}

.brand-card:hover {
  background: rgba(35, 10, 15, 0.75);
  border-color: rgba(220, 38, 38, 0.65);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.35);
}

.brand-card:hover i {
  color: #dc2626;
}

/* --- Stats Counter --- */
.stats-banner {
  background: rgba(18, 18, 22, 0.6);
  border-y: 1px solid var(--border-glass);
  padding: 40px 0;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-red-light);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Services Section (Exact Replica of falhen.com screenshots) --- */
#services {
  background-color: #070a14 !important;
  position: relative;
}

.section-badge-pill {
  display: inline-block;
  background: rgba(30, 8, 12, 0.8);
  border: 1px solid rgba(220, 38, 38, 0.35);
  color: #ff6b6b;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover {
  border-color: rgba(220, 38, 38, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
}

.service-card-banner {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.service-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-banner img {
  transform: scale(1.06);
}

.service-card-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 14, 18, 1) 100%);
}

.service-icon-box {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: #dc2626;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.6);
}

.service-card-body {
  padding: 24px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-checklist li {
  font-size: 0.92rem;
  color: #e4e4e7;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-checklist .check-icon {
  color: #dc2626;
  font-weight: 900;
  font-size: 0.9rem;
}

.service-learn-link {
  margin-top: auto;
  color: #ff6b6b;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.service-learn-link i {
  transition: transform 0.25s ease;
}

.service-learn-link:hover {
  color: #ffffff;
}

.service-learn-link:hover i {
  transform: translateX(4px);
}

/* --- By the Numbers / A Decade of Impact Section --- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.impact-card {
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.impact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: #dc2626;
  opacity: 0;
  transition: opacity 0.3s ease, left 0.3s ease, right 0.3s ease;
}

.impact-card:hover {
  background: rgba(28, 8, 12, 0.9);
  border-color: rgba(220, 38, 38, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.2);
}

.impact-card:hover::after {
  opacity: 1;
  left: 15%;
  right: 15%;
}

.impact-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(35, 10, 15, 0.85);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4d4d;
  font-size: 1.2rem;
  margin-bottom: 24px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.impact-card:hover .impact-icon-box {
  background: #dc2626;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
}

.impact-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.impact-plus {
  color: #ff4d4d;
  margin-left: 2px;
}

.impact-label {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.impact-sublabel {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

align-items: center;
justify-content: center;
font-size: 1.8rem;
color: var(--accent-red-light);
margin-bottom: 24px;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Featured Work Showcase Player & Thumbnail Carousel --- */
.portfolio-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-pill-btn {
  background: rgba(18, 18, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #d4d4d8;
  padding: 8px 10px;
  border-radius: 50px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-pill-btn:hover {
  border-color: rgba(220, 38, 38, 0.5);
  color: #ffffff;
}

.filter-pill-btn.active {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.featured-showcase-player {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  margin-bottom: 24px;
}

.showcase-player-bg {
  position: relative;
  width: 100%;
  height: 576px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  transition: background-image 0.5s ease-in-out;
}

@media (max-width: 768px) {
  .showcase-player-bg {
    height: 432px;
  }
}

.showcase-player-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 20%, rgba(9, 9, 11, 0.6) 80%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.2) 0%, rgba(9, 9, 11, 0.95) 100%);
  z-index: 1;
}

.showcase-counter-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}

.showcase-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  width: 100%;
}

.showcase-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.showcase-badge {
  background: #dc2626;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.showcase-client {
  color: #d4d4d8;
  font-size: 0.9rem;
  font-weight: 500;
}

.showcase-duration {
  color: #d4d4d8;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
}

.showcase-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.15;
}

@media (max-width: 768px) {
  .showcase-title {
    font-size: 1.8rem;
  }
}

.showcase-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.showcase-fullscreen-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.showcase-fullscreen-btn:hover {
  opacity: 1;
  color: #ff6b6b;
}

/* Thumbnail Track */
.showcase-thumbs-wrapper {
  width: 100%;
}

.showcase-thumbs-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  margin-bottom: 24px;
  padding: 12px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.showcase-thumbs-wrapper::-webkit-scrollbar {
  display: none;
}

.showcase-thumbs-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  width: max-content;
}

.thumb-card {
  width: 215px;
  min-width: 215px;
  flex-shrink: 0;
  background: rgba(14, 14, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.thumb-card:hover {
  border-color: rgba(220, 38, 38, 0.5);
  transform: translateY(-4px);
}

.thumb-card.active {
  border-color: #dc2626;
  background: rgba(35, 10, 15, 0.85);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.thumb-badge-now {
  position: absolute;
  top: -8px;
  left: 12px;
  z-index: 3;
  background: #dc2626;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
}

.thumb-img-wrapper {
  position: relative;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.thumb-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-time {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.thumb-cat {
  font-size: 0.68rem;
  font-weight: 800;
  color: #dc2626;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.thumb-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thumb-client {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.showcase-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.showcase-nav-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-arrow-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.5);
}

.auto-advance-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.explore-services-btn {
  background: rgba(18, 18, 22, 0.8);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #ff6b6b;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-services-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
  transform: translateY(-2px);
}

.explore-services-btn i {
  transition: transform 0.3s ease;
}

.explore-services-btn:hover i {
  transform: translateX(4px);
}

/* Testimonials Carousel Styles (3 Cards Per View) */
.testimonials-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  margin-bottom: 24px;
  padding: 10px 0 20px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
}

.testimonial-card {
  width: 370px;
  min-width: 370px;
  max-width: 370px;
  flex-shrink: 0;
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .testimonial-card {
    width: 340px;
    min-width: 340px;
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 290px;
    min-width: 290px;
    max-width: 290px;
  }
}

.testimonial-card:hover,
.testimonial-card.active,
.testimonial-card.featured-card {
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.2);
}

.testimonial-controls-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.testimonial-nav-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  width: 24px;
  border-radius: 12px;
  background: #dc2626;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
  position: relative;
}

.portfolio-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  padding: 24px;
}

.portfolio-cat {
  font-size: 0.8rem;
  color: var(--accent-red-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 6px 0 10px 0;
}

.portfolio-client {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Team Header Flex Layout (Exact replica of falhen.com screenshot) */
.team-header-flex {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  margin-bottom: 45px !important;
  gap: 40px !important;
}

.team-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.team-header-left .section-badge-pill {
  display: inline-block;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #ff4d4d;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 4px;
}

.team-header-right {
  max-width: 460px;
  margin-bottom: 4px;
}

.team-header-desc {
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .team-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- Client Stories Section (Exact Replica of falhen.com) --- */

.testimonial-card {
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #dc2626;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover,
.testimonial-card.featured-card {
  background: rgba(28, 8, 12, 0.95);
  border-color: rgba(220, 38, 38, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
}

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

.testimonial-quote-icon {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ff4d4d;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #e4e4e7;
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-tag-pill {
  display: inline-block;
  align-self: flex-start;
  background: rgba(35, 10, 15, 0.8);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #ff6b6b;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.testimonial-author>div {
  min-width: 0;
  flex: 1;
}

.author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(220, 38, 38, 0.4);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #dc2626;
  font-size: 0.85rem;
}

.testimonial-controls-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.testimonial-nav-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.25s ease;
}

.testimonial-dots .dot.active {
  background: #dc2626;
  width: 24px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
}

.testimonial-rating-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.rating-stars-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #dc2626;
  font-size: 1rem;
}

.rating-score {
  color: #ffffff;
  font-weight: 800;
}

/* --- The People / Meet the Team Section (Exact Replica) --- */
.team-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.team-header-right {
  max-width: 460px;
}

.team-header-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

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

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card,
a.team-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  color: inherit;
  display: block;
}

.team-card:hover {
  border-color: rgba(220, 38, 38, 0.55);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.25);
}

.team-card-thumb {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.team-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card-thumb img {
  transform: scale(1.08);
}

.team-number-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(14, 14, 18, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ff6b6b;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
}

.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 20px 20px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 9, 11, 0.95) 85%);
  display: flex;
  flex-direction: column;
}

.team-card-overlay.normal-overlay {
  transition: opacity 0.3s ease;
}

.team-card-overlay.hover-profile-overlay {
  opacity: 0;
  transform: translateY(10px);
  background: linear-gradient(180deg, rgba(28, 8, 12, 0.4) 0%, rgba(28, 8, 12, 0.95) 75%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.team-card:hover .normal-overlay {
  opacity: 0;
  pointer-events: none;
}

.team-card:hover .hover-profile-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-skills-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.skill-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e4e4e7;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

.team-hover-bio-box {
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.78rem;
  color: #d4d4d8;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transform: translateY(-5px);
  transition: opacity 0.35s ease, visibility 0.35s ease, max-height 0.35s ease, transform 0.35s ease;
}

.team-card:hover .team-hover-bio-box {
  opacity: 1;
  visibility: visible;
  max-height: 100px;
  transform: translateY(0);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
}

.team-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.team-dept-pill {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.team-dept-pill.creative {
  background: rgba(220, 38, 38, 0.85);
  color: #ffffff;
}

.team-dept-pill.strategy {
  background: rgba(16, 185, 129, 0.85);
  color: #ffffff;
}

.team-dept-pill.operations {
  background: rgba(37, 99, 235, 0.85);
  color: #ffffff;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ff4d4d;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.team-meta {
  font-size: 0.75rem;
  color: #a1a1aa;
  font-weight: 500;
}

/* Talent Banner */
.team-talent-banner {
  background: rgba(14, 14, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.talent-banner-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.talent-banner-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.talent-banner-btn {
  background: rgba(18, 18, 22, 0.8);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.talent-banner-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

/* --- Production BTS Gallery Section (Exact Replica) --- */
.bts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 768px) {
  .bts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.bts-card {
  position: relative;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.bts-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bts-card:hover {
  border-color: rgba(220, 38, 38, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.25);
}

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

.bts-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.bts-card:hover .bts-card-overlay {
  opacity: 1;
}

.bts-zoom-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #dc2626;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
  margin-bottom: 16px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.bts-card:hover .bts-zoom-icon {
  transform: scale(1);
}

.bts-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* Lightbox Modal */
.bts-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bts-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.bts-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.bts-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bts-lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bts-lightbox-caption {
  margin-top: 16px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.bts-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.bts-lightbox-close:hover {
  background: #dc2626;
}

/* --- Insights / Latest from the Blog Section (Exact Replica) --- */
.insights-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.insights-view-all {
  color: #ff6b6b;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.insights-view-all:hover {
  color: #ffffff;
}

.insights-view-all:hover i {
  transform: translateX(4px);
}

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

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

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.blog-card:hover {
  background: rgba(28, 8, 12, 0.95);
  border-color: rgba(220, 38, 38, 0.55);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.25);
}

.blog-card-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.06);
}

.blog-cat-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: #dc2626;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-card:hover .blog-title a,
.blog-title a:hover {
  color: #ff6b6b;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-author {
  font-size: 0.85rem;
  color: #d4d4d8;
  font-weight: 600;
}

.blog-read-link {
  color: #ff6b6b;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}

.blog-read-link i {
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-link i,
.blog-read-link:hover i {
  transform: translateX(4px);
}

/* --- Let's Talk / Book a Discovery Call Section (Exact Replica) --- */
.discovery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 1024px) {
  .discovery-grid {
    grid-template-columns: 1fr;
  }
}

.discovery-hero-box {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.discovery-hero-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discovery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 9, 11, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.discovery-available-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
}

.pulse-green-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.discovery-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .discovery-features-grid {
    grid-template-columns: 1fr;
  }
}

.discovery-feature-card {
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.discovery-feature-card:hover {
  border-color: rgba(220, 38, 38, 0.5);
  background: rgba(28, 8, 12, 0.95);
  transform: translateY(-3px);
}

.discovery-icon-box {
  width: 36px;
  height: 36px;
  background: rgba(35, 10, 15, 0.85);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4d4d;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.discovery-feature-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.discovery-feature-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.discovery-proof-bar {
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.discovery-avatars-group {
  display: flex;
  align-items: center;
}

.discovery-avatars-group img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #09090b;
  margin-left: -8px;
}

.discovery-avatars-group img:first-child {
  margin-left: 0;
}

.discovery-proof-text strong {
  display: block;
  font-size: 0.88rem;
  color: #ffffff;
}

.discovery-proof-text small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Discovery Form Card */
.discovery-form-card {
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.discovery-form-header {
  margin-bottom: 24px;
}

.discovery-form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.discovery-form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.discovery-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #a1a1aa;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.discovery-input {
  width: 100%;
  background: rgba(9, 9, 11, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.discovery-input:focus {
  border-color: #dc2626;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.4);
}

.discovery-textarea {
  height: 100px;
  resize: vertical;
}

.char-count {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.btn-discovery-submit {
  width: 100%;
  background: #dc2626;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.btn-discovery-submit:hover {
  background: #ef4444;
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.6);
  transform: translateY(-2px);
}

.discovery-form-footer-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* --- Quote Request Form --- */
.quote-section {
  background: radial-gradient(circle at 100% 100%, rgba(220, 38, 38, 0.12) 0%, rgba(18, 18, 22, 1) 60%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  padding: 60px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  background: rgba(9, 9, 11, 0.8);
  border: 1px solid var(--border-glass);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

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

/* --- Footer & Scroll Top (Exact Replica of falhen.com) --- */
.footer-top-accent-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(220, 38, 38, 0) 0%,
      rgba(239, 68, 68, 0.45) 18%,
      #ef4444 50%,
      rgba(239, 68, 68, 0.45) 82%,
      rgba(220, 38, 38, 0) 100%);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.75), 0 0 30px rgba(220, 38, 38, 0.35);
  position: relative;
  z-index: 5;
}

.footer {
  background: #060814;
  padding: 45px 0 20px 0;
  color: var(--text-muted);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 24px;
}

.footer-tagline {
  margin-top: 16px;
  margin-bottom: 24px;
  color: #a1a1aa;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
  transform: translateY(-2px);
}

.footer-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a1a1aa;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #ff6b6b;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #71717a;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #71717a;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-legal .dashboard-link {
  color: #a1a1aa;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-legal .dashboard-link:hover {
  color: #ff6b6b;
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 18, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
  transform: translateY(-4px);
}

/* --- Cookie Consent Banner (Exact Replica of falhen.com) --- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  width: 320px;
  max-width: calc(100vw - 48px);
  background: rgba(14, 14, 18, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.cookie-icon-box {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  font-size: 0.9rem;
}

.cookie-title-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cookie-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.cookie-desc {
  font-size: 0.78rem;
  color: #a1a1aa;
  line-height: 1.4;
  margin: 0;
}

.cookie-link {
  color: #a1a1aa;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-link:hover {
  color: #ffffff;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.btn-cookie-reject {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-cookie-accept {
  flex: 1;
  background: #dc2626;
  border: none;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-cookie-accept:hover {
  background: #ef4444;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
  transform: translateY(-1px);
}

.cookie-manage-link {
  display: block;
  text-align: center;
  font-size: 0.76rem;
  color: #71717a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cookie-manage-link:hover {
  color: #a1a1aa;
}

/* Cookie Views & Preferences Modal */
.cookie-view {
  display: none;
}

.cookie-view.active {
  display: block;
}

.cookie-prefs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-back-btn {
  background: transparent;
  border: none;
  color: #a1a1aa;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.cookie-back-btn:hover {
  color: #ffffff;
}

.cookie-options-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.cookie-option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-option-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 210px;
}

.cookie-option-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.cookie-option-desc {
  font-size: 0.73rem;
  color: #71717a;
  line-height: 1.35;
  margin: 0;
}

.cookie-always-on {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Custom Toggle Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.16);
  transition: 0.3s;
  border-radius: 20px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-switch input:checked+.cookie-slider {
  background-color: #dc2626;
}

.cookie-switch input:checked+.cookie-slider:before {
  transform: translateX(16px);
}

.btn-cookie-save {
  width: 100%;
  background: #dc2626;
  border: none;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-cookie-save:hover {
  background: #ef4444;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

/* --- Modal Video Player --- */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(220, 38, 38, 0.5);
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.6rem;
  }

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

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

@media (max-width: 768px) {
  body.mobile-menu-open {
    overflow: hidden !important;
  }

  .nav-right {
    display: none !important;
  }

  .nav-center {
    display: none;
  }

  .nav-center.active {
    display: flex !important;
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background: #09090b !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 20px 18px 24px 18px !important;
    box-sizing: border-box !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .nav-item {
    width: 100% !important;
  }

  .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 14px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    color: #e4e4e7 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
  }

  .nav-link.active {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.25) 0%, rgba(153, 27, 27, 0.2) 100%) !important;
    border-color: rgba(220, 38, 38, 0.6) !important;
    color: #ffffff !important;
  }

  .mobile-nav-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    color: #a1a1aa !important;
    font-size: 1rem !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
  }

  .nav-link.active .mobile-nav-icon {
    background: #dc2626 !important;
    border-color: #ef4444 !important;
    color: #ffffff !important;
  }

  .nav-text {
    flex: 1 !important;
    text-align: left !important;
  }

  .mobile-nav-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ef4444 !important;
    font-size: 1.05rem !important;
    margin-left: 8px !important;
  }

  .mega-dropdown-menu,
  .nav-item.dropdown:hover .mega-dropdown-menu {
    display: none !important;
  }

  .dropdown-arrow {
    font-size: 0.85rem !important;
    color: #71717a !important;
    margin-left: 8px !important;
    transition: transform 0.25s ease !important;
  }

  .nav-item.dropdown.open .nav-link {
    background: rgba(220, 38, 38, 0.15) !important;
    border-color: rgba(220, 38, 38, 0.4) !important;
    color: #ffffff !important;
  }

  .nav-item.dropdown.open .dropdown-arrow {
    transform: rotate(180deg) !important;
    color: #ef4444 !important;
  }

  .nav-item.dropdown .mobile-sub-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    margin: 8px 0 4px 18px;
    padding-left: 14px;
    border-left: 2px solid rgba(220, 38, 38, 0.5);
    list-style: none;
  }

  .nav-item.dropdown.open .mobile-sub-menu {
    display: flex !important;
  }

  .mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    color: #d4d4d8;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
  }

  .mobile-sub-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-sub-icon {
    font-size: 0.85rem;
    color: #dc2626;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
  }

  .mobile-menu-cta {
    display: block !important;
    width: 100% !important;
    margin-top: auto !important;
    padding-top: 16px !important;
  }

  .btn-mobile-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 15px !important;
    background: #dc2626 !important;
    color: #ffffff !important;
    border-radius: 14px !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4) !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }

  .nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 28px !important;
  }

  .hero-actions .btn {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    padding: 12px 6px !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .hero-actions .btn-hero-glass {
    gap: 5px !important;
  }

  .hero-actions .hero-play-icon {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.65rem !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
  }

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

  /* --- Mobile Brand Cards Sizing --- */
  .brands-section {
    padding: 30px 0 !important;
  }

  .brands-title {
    font-size: 0.72rem !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 16px !important;
  }

  .brands-ticker-track {
    gap: 12px !important;
  }

  .brand-card {
    padding: 10px 20px !important;
    font-size: 0.82rem !important;
    gap: 8px !important;
    border-radius: 8px !important;
  }

  .brand-card i {
    font-size: 0.95rem !important;
  }

  .brand-card img {
    max-height: 18px !important;
    max-width: 75px !important;
  }

  /* --- Hide Section Subtitles on Mobile View (Except Hero) --- */
  .section-subtitle,
  .port-section-subtitle,
  .port-hero-subtitle,
  .section-description,
  .discovery-form-subtitle {
    display: none !important;
  }

  .hero-subtitle {
    display: block !important;
    font-size: 0.94rem !important;
    line-height: 1.5 !important;
    color: #e4e4e7 !important;
    margin: 0 auto 24px auto !important;
    padding: 0 10px !important;
    max-width: 92% !important;
  }

  .section-title-wrapper {
    margin-bottom: 28px !important;
  }

  .section-title {
    font-size: 2.2rem !important;
    margin-bottom: 0 !important;
  }

  /* --- Service Card Description Line Clamping --- */
  .service-desc {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
  }

  /* --- Mobile Services Swiping Carousel --- */
  .services-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .services-grid::-webkit-scrollbar {
    display: none !important;
  }

  .services-grid .service-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
  }

  .services-mobile-controls {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: 20px !important;
    padding: 0 10px !important;
  }

  .services-carousel-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(18, 18, 22, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  .services-carousel-btn:hover {
    background: rgba(220, 38, 38, 0.25) !important;
    border-color: #dc2626 !important;
    color: #ef4444 !important;
  }

  .services-carousel-dots {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .services-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.25) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
  }

  .services-dot.active {
    width: 26px !important;
    border-radius: 10px !important;
    background: #dc2626 !important;
  }

  /* --- Mobile By the Numbers (2x2 Grid) --- */
  .impact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .impact-card {
    padding: 20px 12px !important;
    border-radius: 14px !important;
    background: rgba(14, 14, 18, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .impact-icon-box {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
    margin-bottom: 12px !important;
    border-radius: 10px !important;
  }

  .impact-number {
    font-size: 1.85rem !important;
    margin-bottom: 6px !important;
    font-weight: 900 !important;
  }

  .impact-label {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
  }

  .impact-sublabel {
    display: none !important;
  }

  /* --- Mobile Featured Work / Stories We've Told Section --- */
  .portfolio-filter-bar {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    gap: 8px !important;
    padding-bottom: 6px !important;
    margin-bottom: 18px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .portfolio-filter-bar::-webkit-scrollbar {
    display: none !important;
  }

  .filter-pill-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 6px 14px !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
  }

  .featured-showcase-player {
    border-radius: 16px !important;
    margin-bottom: 16px !important;
  }

  .showcase-player-bg {
    height: 280px !important;
  }

  .showcase-counter-badge {
    top: 12px !important;
    right: 12px !important;
    font-size: 0.75rem !important;
    padding: 3px 10px !important;
  }

  .showcase-content {
    padding: 16px !important;
  }

  .showcase-meta {
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .showcase-badge {
    font-size: 0.68rem !important;
    padding: 3px 10px !important;
  }

  .showcase-client,
  .showcase-duration {
    font-size: 0.78rem !important;
  }

  .showcase-title {
    font-size: 1.35rem !important;
    margin-bottom: 14px !important;
    line-height: 1.25 !important;
  }

  .showcase-actions {
    gap: 10px !important;
  }

  .showcase-actions .btn-hero-red {
    padding: 9px 18px !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
  }

  .showcase-fullscreen-btn {
    font-size: 0.78rem !important;
  }

  .showcase-thumbs-wrapper {
    margin-bottom: 16px !important;
    padding: 6px 0 !important;
  }

  .showcase-thumbs-track {
    gap: 10px !important;
  }

  .thumb-card {
    width: 145px !important;
    min-width: 145px !important;
    padding: 8px !important;
    border-radius: 10px !important;
  }

  .thumb-img-wrapper {
    height: 82px !important;
    margin-bottom: 6px !important;
    border-radius: 6px !important;
  }

  .thumb-badge-now {
    top: -6px !important;
    left: 8px !important;
    font-size: 0.6rem !important;
    padding: 1px 6px !important;
  }

  .thumb-time {
    font-size: 0.65rem !important;
    padding: 1px 4px !important;
    bottom: 4px !important;
    right: 4px !important;
  }

  .thumb-cat {
    font-size: 0.62rem !important;
    margin-bottom: 2px !important;
  }

  .thumb-title {
    font-size: 0.78rem !important;
    margin-bottom: 2px !important;
  }

  .thumb-client {
    font-size: 0.68rem !important;
  }

  .showcase-controls-bar {
    padding-top: 6px !important;
  }

  .auto-advance-label {
    display: none !important;
  }

  .explore-services-btn {
    font-size: 0.82rem !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
  }

  /* --- Mobile Client Stories (1 Card Per Display Swiping Carousel) --- */
  .testimonials-wrapper {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .testimonials-wrapper::-webkit-scrollbar {
    display: none !important;
  }

  .testimonials-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .testimonial-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
    padding: 24px 20px !important;
  }

  .testimonial-quote {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 16px !important;
  }

  /* --- Mobile The People / Meet the Team (1 Card Per Display Swiping Carousel) --- */
  .team-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .team-grid::-webkit-scrollbar {
    display: none !important;
  }

  .team-grid .team-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
  }

  .team-card-thumb {
    height: 380px !important;
  }

  .team-mobile-controls {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
    padding: 0 10px !important;
  }

  .team-carousel-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(18, 18, 22, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  .team-carousel-btn:hover {
    background: rgba(220, 38, 38, 0.25) !important;
    border-color: #dc2626 !important;
    color: #ef4444 !important;
  }

  .team-carousel-dots {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .team-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.25) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
  }

  .team-dot.active {
    width: 26px !important;
    border-radius: 10px !important;
    background: #dc2626 !important;
  }

  /* --- Center Meet the Team Header on Mobile --- */
  .team-header-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 14px !important;
    margin-bottom: 24px !important;
  }

  .team-header-left {
    align-items: center !important;
    text-align: center !important;
  }

  .team-header-left .section-title {
    text-align: center !important;
    font-size: 2.2rem !important;
  }

  .team-header-right {
    max-width: 100% !important;
    text-align: center !important;
  }

  .team-header-desc {
    text-align: center !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  /* --- Production BTS Mobile (2 Cards Per Row Grid) --- */
  .bts-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .bts-card {
    height: 165px !important;
    border-radius: 12px !important;
  }

  /* --- Mobile Insights / Latest from the Blog Section --- */
  .insights-header-flex {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 20px !important;
  }

  .insights-header-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .insights-header-left .section-title {
    font-size: 1.65rem !important;
    text-align: left !important;
    margin-bottom: 0 !important;
  }

  .insights-view-all {
    font-size: 0.85rem !important;
    color: #ef4444 !important;
    font-weight: 700 !important;
  }

  .blog-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .blog-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    background: rgba(14, 14, 18, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 14px !important;
    padding: 12px !important;
    gap: 14px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
  }

  .blog-card-thumb {
    width: 110px !important;
    min-width: 110px !important;
    height: 92px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    position: relative !important;
    flex-shrink: 0 !important;
  }

  .blog-card-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .blog-cat-pill {
    position: absolute !important;
    top: 6px !important;
    left: 6px !important;
    font-size: 0.58rem !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    background: #dc2626 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
  }

  .blog-card-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  .blog-meta {
    font-size: 0.72rem !important;
    color: #a1a1aa !important;
    margin-bottom: 4px !important;
  }

  .blog-title {
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .blog-title a {
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .blog-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: 2px !important;
  }

  .blog-author {
    font-size: 0.74rem !important;
    color: #71717a !important;
  }

  .blog-read-link {
    font-size: 0.76rem !important;
    color: #ef4444 !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
  }

  .quote-section {
    padding: 30px 20px;
  }

  /* --- Mobile Footer & Fixed Floating Bottom Dock Widget --- */
  .footer-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px 12px !important;
  }

  .footer-brand {
    grid-column: 1 / -1 !important;
    margin-bottom: 24px !important;
    text-align: left !important;
  }

  .footer-title {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
  }

  .footer-links li a {
    font-size: 0.82rem !important;
    color: #a1a1aa !important;
    line-height: 1.8 !important;
  }

  .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding-bottom: 85px !important;
    margin-top: 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 20px !important;
    gap: 12px !important;
  }

  .footer-copy {
    text-align: center !important;
    width: 100% !important;
    font-size: 0.78rem !important;
    color: #71717a !important;
    margin: 0 auto !important;
  }

  .footer-legal {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 0.78rem !important;
    color: #71717a !important;
  }

  /* Fixed Floating Mobile Dock Widget */
  .mobile-bottom-dock {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: rgba(9, 9, 11, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-top: 1px solid rgba(220, 38, 38, 0.4) !important;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.8), 0 -2px 10px rgba(220, 38, 38, 0.2) !important;
    padding: 6px 10px 10px 10px !important;
    align-items: center !important;
    justify-content: space-around !important;
  }

  .dock-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: #a1a1aa !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 4px 6px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    gap: 3px !important;
    flex: 1 !important;
  }

  .dock-icon-box {
    font-size: 1.15rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    transition: all 0.2s ease !important;
  }

  .dock-label {
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
  }

  .dock-item.active {
    color: #ff4d4d !important;
  }

  .dock-item.active .dock-icon-box {
    background: #dc2626 !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    width: 42px !important;
    height: 30px !important;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.6) !important;
  }

  /* --- Comprehensive Mobile Responsiveness for All Inner Pages --- */
  body {
    padding-bottom: 70px !important;
  }

  .port-hero-title,
  .team-hero-title,
  .blog-hero-title,
  .about-hero-title,
  .contact-hero-title {
    font-size: 2.2rem !important;
  }

  .port-hero-subtitle,
  .team-hero-subtitle,
  .blog-hero-subtitle,
  .about-hero-subtitle,
  .contact-hero-subtitle {
    display: none !important;
  }

  /* Portfolio Grids */
  .featured-albums-grid,
  .all-albums-grid,
  .port-videos-grid,
  .projects-masonry-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Team Grids */
  .team-grid-pro,
  .about-team-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Blog Grids */
  .blog-main-grid,
  .blog-grid-pro,
  .related-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Careers & FAQs & Contact */
  .careers-grid,
  .faq-grid,
  .discovery-grid,
  .contact-grid-wrapper {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .discovery-features-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Single Detail Page Padding & Margins */
  .service-detail-container,
  .member-detail-container,
  .article-detail-container,
  .dpa-container,
  .terms-container,
  .privacy-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-bottom: 85px !important;
  }
}