:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --white: #ffffff;
  --green: #c8ff00;
  --grey: #888888;
  --border: rgba(255, 255, 255, 0.08);
  --display: "Bebas Neue", sans-serif;
  --body: "Space Grotesk", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition:
    background 0.4s,
    padding 0.3s;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 50px;
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 44px;
  filter: brightness(0) invert(1);
  transition:
    filter 0.3s,
    transform 0.3s;
  display: block;
}

.nav-logo:hover img {
  filter: brightness(0) saturate(100%) invert(90%) sepia(100%) saturate(500%)
    hue-rotate(30deg);
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--green);
}

.btn-client {
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 8px 22px !important;
  border-radius: 2px;
  transition: all 0.3s !important;
}

.btn-client:hover {
  background: var(--green) !important;
  color: var(--bg) !important;
  border-color: var(--green) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.yt-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.yt-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.25) 40%,
    rgba(10, 10, 10, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tagline {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-logo {
  height: clamp(110px, 16vw, 200px);
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 28px;
}

.hero-services {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 400;
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: pulse 2s infinite;
}

.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: var(--green);
  color: var(--bg);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #d4ff1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 255, 0, 0.3);
}

.btn-outline {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.services {
  width: 100%;
  height: 700px;
  display: grid;
  grid-template-columns: 1fr 500px;
  position: relative;
}

.services::before {
  content: "";
  width: 1920px;
  height: 100%;
  background: linear-gradient(90deg, var(--bg) 50%, #cbf70e 70%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.services-desc {
  padding: 0 0 60px 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services__intro {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 100;
  color: var(--green);
}

.services__title {
  font-family: var(--display);
  font-size: 4.2rem;
  line-height: 70px;
}

.services__title span {
  color: var(--green);
}

.services ul::before {
  content: "";
  display: block;
  width: 75px;
  height: 5px;
  margin: 20px 0;
  background-color: var(--green);
}

.services__list {
  list-style-type: none;
  padding: 0;
  font-size: 1.4rem;
}

.services__list li {
  padding: 8px 0;
}

.services__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-bottom: 2px;
  border-radius: 100px;
  margin-right: 15px;
  display: inline-block;
  background-color: var(--green);
}

.services img {
  width: 100%;
  object-fit: fill;
}

@media (max-width: 1200px) {
  .services {
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .services-desc {
    padding: 100px 0 100px 80px;
  }
  .services img {
    width: 45%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
}

@media (max-width: 1024px) {
  .services-desc {
    padding-left: 60px;
  }
  .services__title {
    font-family: var(--display);
    font-size: 2.5rem;
  }
  .services__list {
    font-size: 1.2rem;
  }
  .services img {
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .services {
    display: flex;
    flex-direction: column;
    max-height: none;
    position: static;
  }
  .services::before {
    content: none;
  }
  .services-desc {
    padding: 40px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg);
  }
  .services__intro {
    padding: 0;
    font-size: 1rem;
    font-family: var(--display);
    color: var(--green);
    margin-bottom: 12px;
  }
  .services__title {
    width: 100%;
    padding-top: 0;
    font-family: var(--display);
    font-size: clamp(1.8rem, 6vw, 3rem);
    line-height: 1.1;
    text-align: left;
    color: var(--white);
  }
  .services__list {
    padding: 15px 0 0;
    font-size: 1rem;
  }
  .services ul::before {
    content: none;
  }
  .services__list li {
    padding: 6px 0;
    position: relative;
  }
  .services__list li::before {
    width: 50px;
    height: 1px;
    position: absolute;
    bottom: -1px;
  }
  .services img {
    position: static;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
}

.portrait-hero-img {
  width: 100%;
  position: relative;
}

.portrait-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.portrait-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.6) 28%,
    rgba(10, 10, 10, 0.05) 55%,
    transparent 100%
  );
  z-index: 1;
}

.portrait-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 50px;
  max-width: 520px;
}

.portrait-hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(200, 255, 0, 0.3);
}

.portrait-hero-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 28px;
}

.portrait-hero-title .text-green {
  color: var(--green);
}

.portrait-hero-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.portrait-service {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.portrait-service-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(200, 255, 0, 0.4);
}

.portrait-hero-line {
  width: 40px;
  height: 1px;
  background: var(--green);
  opacity: 0.5;
  margin-bottom: 24px;
}

.portrait-hero-quote {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 768px) {
  .portrait-hero {
    min-height: 60vh;
  }

  .portrait-hero-overlay {
    background: linear-gradient(
      to top,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(10, 10, 10, 0.7) 40%,
      rgba(10, 10, 10, 0.2) 100%
    );
  }

  .portrait-hero-content {
    justify-content: flex-end;
    padding: 40px 24px;
    max-width: 100%;
  }

  .portrait-hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }
}

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 14px;
}

.section-header {
  padding: 0 50px;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 90px);
  line-height: 0.95;
  color: var(--white);
}

.social-banner {
  padding: 100px 50px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.social-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.social-banner-title {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}

.social-banner-text {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
  max-width: 400px;
}

.social-banner-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--green);
  transition: height 0.4s;
}

.social-card:hover {
  border-color: rgba(200, 255, 0, 0.25);
  background: #161616;
  transform: translateX(6px);
}

.social-card:hover::before {
  height: 100%;
}

.social-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.social-card-ig .social-card-icon {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: white;
}

.social-card-yt .social-card-icon {
  background: #ff0000;
  color: white;
}

.social-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.social-card-handle {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}

.social-card-platform {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.social-card-arrow {
  font-size: 22px;
  color: var(--grey);
  transition: all 0.3s;
  flex-shrink: 0;
}

.social-card:hover .social-card-arrow {
  color: var(--green);
  transform: translateX(4px);
}

.expertise {
  padding: 120px 50px;
  background: var(--bg2);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
}

.expertise-card {
  background-color: var(--bg2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}

/* dark overlay by default */
.expertise-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  transition: opacity 0.45s ease;
  z-index: 0;
}

/* reveal on hover */
.expertise-card:hover::after {
  opacity: 0;
}

/* keep content above the overlay */
.expertise-card > * {
  position: relative;
  z-index: 1;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--green);
  transition: height 0.4s;
  z-index: 2;
}

.expertise-card:hover::before {
  height: 100%;
}

.expertise-num {
  font-family: var(--display);
  font-size: 72px;
  line-height: 1;
  color: var(--green);
  opacity: 0.15;
  margin-bottom: 24px;
}

.expertise-card h3 {
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.expertise-card p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
}

/* ===== À PROPOS ===== */
.apropos {
  padding: 120px 50px;
  background: var(--bg);
}

.apropos-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.apropos-title {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95;
}

.text-green {
  color: var(--green);
}

.apropos-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}

.apropos-stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

.contact {
  padding: 120px 50px;
  background: var(--bg2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.contact-title {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.contact-item a,
.contact-item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--green);
}

.social-links {
  display: flex;
  gap: 24px;
}

footer {
  padding: 36px 50px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
}

.footer-logo {
  height: 34px;
  filter: brightness(0) invert(1);
  opacity: 0.25;
}

footer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(0.6);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hologram-grid {
    grid-template-columns: 1fr 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .apropos-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 14px 24px;
  }

  nav.scrolled {
    padding: 10px 24px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  .hamburger {
    display: flex;
  }

  .hero-logo {
    height: clamp(80px, 28vw, 130px);
  }

  .hero-services {
    font-size: 12px;
    padding: 0 16px;
    text-align: center;
  }

  .hero-scroll {
    display: none;
  }

  .section-header {
    padding: 0 24px;
  }

  .social-banner {
    padding: 60px 24px;
  }

  .social-banner-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .social-card {
    padding: 20px 24px;
  }

  .expertise {
    padding: 80px 24px;
  }

  .expertise-card {
    padding: 40px 28px;
    min-height: 380px;
    max-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .apropos {
    padding: 80px 24px;
  }

  .apropos-stats {
    flex-wrap: wrap;
    gap: 30px;
  }

  .contact {
    padding: 80px 24px;
  }

  footer {
    padding: 28px 24px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.tlv-hero {
  position: relative;
  width: 100%;
  height: 130vh;
  overflow: hidden;
  background-color: #050505;
}

.tlv-bg-grid {
  display: flex;
  gap: 16px;
  position: absolute;
  top: -20%;
  left: -5%;
  width: 110%;
  height: 250%;
  opacity: 0.85;
}

.tlv-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 33.33%;
  animation: gridScrollUp 80s linear infinite;
}

.tlv-col:nth-child(2) {
  animation: gridScrollDown 90s linear infinite;
}

@keyframes gridScrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes gridScrollDown {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.tlv-item {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #111;
  flex-shrink: 0;
}

.tlv-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.tlv-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  text-align: center;
  background: radial-gradient(
    circle,
    rgba(5, 5, 5, 0.05) 0%,
    rgba(5, 5, 5, 0.6) 100%
  );
  padding: 20px;
}

.tlv-title {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: var(--white);
}

.tlv-highlight {
  color: var(--green);
  text-shadow: 0 0 40px rgba(200, 255, 0, 0.3);
}

.tlv-subtitle {
  font-family: var(--body);
  font-size: clamp(14px, 1.3vw, 18px);
  max-width: 600px;
  color: var(--white);
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 768px) {
  .tlv-bg-grid {
    gap: 8px;
    width: 100%;
    left: 0;
  }

  .tlv-col {
    flex: 1;
    min-width: 0;
    gap: 8px;
  }

  .tlv-col:nth-child(2) {
    animation-name: gridScrollUp;
    animation-duration: 95s;
  }

  .tlv-col:nth-child(3) {
    display: none;
  }

  .tlv-hero {
    height: auto;
    min-height: 100vh;
    overflow: hidden;
  }
}

.showreel {
  padding: 60px 50px 100px;
  background: var(--bg2);
  margin-top: -2px;
}

.showreel-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.showreel .section-label {
  margin-bottom: 30px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.partners-section {
  width: 100%;
  padding: 72px 0 64px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.partners-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 255, 0, 0.25),
    transparent
  );
}

.partners-fade-left,
.partners-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.partners-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.partners-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.partners-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 24px;
}

.partners-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(200, 255, 0, 0.3);
}

.partners-title {
  font-size: 17px;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.5px;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  flex-shrink: 0;
  opacity: 0.4;
  transition:
    opacity 0.4s,
    filter 0.4s,
    transform 0.3s;
  filter: grayscale(100%) brightness(2);
  cursor: default;
}

.partner-item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08);
}

.partner-item img {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .showreel {
    padding: 60px 24px;
  }

  .partners-section {
    padding: 52px 0 44px;
  }

  .partners-header {
    margin-bottom: 36px;
  }

  .partners-label {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .partners-title {
    font-size: 14px;
  }

  .partners-fade-left,
  .partners-fade-right {
    width: 60px;
  }

  .partner-item {
    height: 54px;
  }

  .marquee-group {
    gap: 48px;
    padding-right: 48px;
  }

  .marquee {
    animation-duration: 25s;
  }
}
.stats-banner {
  position: relative;
  padding: 80px 50px;
  background-color: #060d06;
  background-image:
    linear-gradient(rgba(180, 255, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 300px;
  background: radial-gradient(ellipse, rgba(150, 220, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stats-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.stat-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 0 40px;
}
.stat-number {
  display: flex; align-items: flex-start;
  line-height: 1; margin-bottom: 14px;
}
.stat-count, .stat-count-world {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 96px);
  color: var(--green);
  line-height: 1; letter-spacing: -0.02em;
}
.stat-suffix {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 38px);
  color: var(--green);
  line-height: 1; margin-top: 8px; margin-left: 4px;
}
.stat-desc {
  font-family: var(--body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.stat-sep {
  width: 1px; height: 60px; flex-shrink: 0;
  background: linear-gradient(to bottom, transparent, rgba(200, 255, 0, 0.2), transparent);
}
@media (max-width: 768px) {
  .stats-banner { padding: 60px 24px; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .stat-sep { display: none; }
  .stat-item { padding: 0 20px; }
}

@media (max-width: 480px) {
  nav {
    padding: 12px 16px;
  }

  nav.scrolled {
    padding: 10px 16px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
    width: 100%;
    padding: 14px 24px;
  }

  .services-desc {
    padding: 40px 16px;
  }

  .services__list {
    font-size: 1rem;
  }

  .section-header {
    padding: 0 16px;
  }

  .social-banner {
    padding: 50px 16px;
  }

  .social-card {
    padding: 16px 18px;
    gap: 14px;
  }

  .social-card-handle {
    font-size: 14px;
  }

  .expertise {
    padding: 60px 16px;
  }

  .expertise-card {
    padding: 32px 20px;
  }

  .apropos {
    padding: 60px 16px;
  }

  .contact {
    padding: 60px 16px;
  }

  .contact-title {
    font-size: clamp(40px, 12vw, 70px);
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  footer {
    padding: 24px 16px;
  }
}

/* ===== PORTFOLIO VIDEOS ===== */
.portfolio-videos {
  padding: 120px 0 80px;
  background: var(--bg2);
}

.portfolio-videos .section-header {
  padding: 0 50px 60px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.video-card {
  background: #000;
  border: none;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.video-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
  z-index: 1;
}

.video-card:hover {
  border-color: rgba(200, 255, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.video-card:hover::before {
  transform: scaleX(1);
}

.video-live-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  pointer-events: none;
}

.video-live-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.videos-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 80px 0;
}

.loading-spinner {
  width: 40px; height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Modal vidéo */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-close:hover {
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
}

.modal-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.modal-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.modal-title {
  padding: 14px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid var(--border);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .portfolio-videos {
    padding: 80px 0 60px;
  }
  .portfolio-videos .section-header {
    padding: 0 24px 40px;
  }
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .video-modal {
    padding: 12px;
    align-items: flex-end;
  }
  .modal-content {
    border-radius: 8px 8px 0 0;
  }
}

@media (max-width: 480px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }
}
