/* ========================================
   RDR BUSINESS SOLUTIONS — CONVERSION LP
   Dark premium + Light social proof section
   Marquee, Carousels, Offer Groups
   ======================================== */

:root {
  --bg: #050a12;
  --bg-elevated: #0a1628;
  --bg-card: rgba(15, 30, 60, .55);
  --bg-glass: rgba(255, 255, 255, .04);
  --border: rgba(255, 255, 255, .08);
  --border-hover: rgba(255, 255, 255, .18);

  --white: #ffffff;
  --white-70: rgba(255, 255, 255, .7);
  --white-50: rgba(255, 255, 255, .5);
  --white-30: rgba(255, 255, 255, .3);
  --white-10: rgba(255, 255, 255, .1);

  --accent: #1A9AAF;
  --accent-glow: rgba(26, 154, 175, .35);
  --accent-dark: #147B8A;
  --gold: #F0A500;
  --gold-glow: rgba(240, 165, 0, .25);

  /* Light section */
  --light-bg: #f7f8fa;
  --light-card: #ffffff;
  --dark-text: #1a202c;
  --dark-sub: #6b7a90;

  --gradient-hero: linear-gradient(160deg, #050a12 0%, #0a1e3d 40%, #0e3a50 100%);
  --gradient-cta: linear-gradient(135deg, #0a1e3d 0%, #0e3a50 50%, #0f4858 100%);
  --gradient-text: linear-gradient(90deg, #2b45bd, #19adda, #FFFBE6);

  --font: 'Outfit', 'Inter', -apple-system, sans-serif;
  --container: 1200px;
  --ease: cubic-bezier(.4, 0, .2, 1);

  --shadow: 0 4px 30px rgba(0, 0, 0, .5);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-70);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color .25s var(--ease);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  color: var(--white);
  line-height: 1.2;
  font-weight: 800;
}

/* ---- Utility ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: rgba(26, 154, 175, .1);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-text);
  border-radius: 4px;
  margin: 12px 0 20px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--white-50);
  font-size: 1.02rem;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

.unlock-text {
  color: var(--white-50);
  font-size: .86rem;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .9rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
}

.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-accent-dark {
  background: var(--dark-text);
  color: var(--white);
  padding: 14px 32px;
}

.btn-accent-dark:hover {
  background: #2d3748;
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--bg-glass);
  color: var(--white);
  border: 1px solid var(--border);
  padding: 14px 32px;
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: var(--white-10);
  border-color: var(--border-hover);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white-30);
  padding: 12px 28px;
}

.btn-outline-light:hover {
  background: var(--white-10);
  border-color: var(--white);
}

.btn-cta-nav {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white-30);
  padding: 10px 22px;
  font-size: .8rem;
  letter-spacing: .5px;
}

.btn-cta-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ---- Scroll animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all .35s var(--ease);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 10, 18, .92);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, .4);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .3s;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-rdr {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .5px;
  white-space: nowrap;
}

.logo-tagline {
  font-size: .52rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  opacity: .5;
  text-transform: none;
  font-style: italic;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--white-70);
  font-size: .86rem;
  font-weight: 500;
  transition: color .25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

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

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

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

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
  visibility: hidden;
  transition: all .35s var(--ease);
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  text-align: center;
  overflow: hidden;
  padding: 70px 0 40px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--white-10) 1px, transparent 1px), linear-gradient(90deg, var(--white-10) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .04;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  animation: pulse 10s ease-in-out infinite 2s;
}

@keyframes pulse {

  0%,
  100% {
    opacity: .4;
    transform: scale(1)
  }

  50% {
    opacity: .7;
    transform: scale(1.15)
  }
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-pill svg {
  color: var(--gold);
}

.hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--white-50);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust-line {
  font-size: .86rem;
  color: var(--white-30);
}

.hero-trust-line strong {
  color: var(--white-70);
}

.auto-fade-in {
  opacity: 0;
  transform: translateY(15px);
  animation: autoFade 0.6s ease forwards 0.3s;
}

@keyframes autoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========================================
   FEATURE STRIP
   ======================================== */
.feature-strip {
  padding: 40px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.strip-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 28px;
  transition: all .3s var(--ease);
  flex: 1;
  min-width: 280px;
  max-width: 380px;
}

.strip-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.strip-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.strip-card strong {
  display: block;
  color: var(--white);
  font-size: .82rem;
  letter-spacing: 1px;
}

.strip-card span {
  font-size: .76rem;
  color: var(--white-50);
}

.strip-arrow {
  color: var(--white-30);
  font-size: 1.2rem;
  margin-left: auto;
}


/* ========================================
   ABOUT
   ======================================== */
.about-section {
  background: var(--bg);
}

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

.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.about-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 28px;
}

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

.about-feat {
  display: flex;
  gap: 16px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .3s var(--ease);
}

.about-feat:hover {
  border-color: var(--accent);
  background: var(--bg-glass);
}

.feat-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feat strong {
  display: block;
  color: var(--white);
  font-size: .92rem;
  margin-bottom: 3px;
}

.about-feat p {
  font-size: .82rem;
  color: var(--white-50);
  line-height: 1.5;
}


/* ========================================
   SOCIAL PROOF — LIGHT BACKGROUND
   ======================================== */
.social-proof-section {
  background: var(--light-bg) !important;
}

.social-proof-section h2,
.social-proof-section h4,
.social-proof-section .section-tag {
  color: var(--dark-text) !important;
  -webkit-text-fill-color: var(--dark-text);
}

.social-proof-section .section-desc,
.social-proof-section p,
.social-proof-section .sp-sub {
  color: var(--dark-sub) !important;
}

.sp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark-sub);
  border: 1px solid #d1d5db;
  border-radius: var(--radius-pill);
  padding: 8px 20px;
}

.sp-pill svg {
  color: var(--gold);
}

.sp-heading {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  text-align: center;
  margin-bottom: 12px;
}

.sp-sub {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1rem;
}

/* Social cards — white cards on light bg */
.social-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.social-card {
  background: var(--light-card);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .3s var(--ease);
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.social-logo {
  flex-shrink: 0;
}

.social-info strong {
  display: block;
  color: var(--dark-text);
  font-size: .88rem;
}

.social-info span {
  display: block;
  color: var(--dark-sub);
  font-size: .72rem;
}

.social-sub {
  font-size: .68rem !important;
  color: #94a3b8 !important;
}

.social-stat {
  margin-top: auto;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark-text);
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: .72rem;
  color: var(--dark-sub);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all .25s;
  width: fit-content;
}

.fb-btn {
  background: #1877F2;
}

.yt-btn {
  background: #FF0000;
}

.tt-btn {
  background: #010101;
}

.sp-btn {
  background: #1DB954;
}

.social-btn:hover {
  opacity: .85;
  transform: scale(1.05);
}

/* Featured On */
.featured-heading {
  text-align: center;
  font-size: .82rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.featured-sub {
  text-align: center;
  font-size: .85rem;
  margin-bottom: 24px;
}

/* ---- Marquee ---- */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 12px 0;
  margin-bottom: 16px;
}

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

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--light-bg), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--light-bg), transparent);
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  padding: 12px 20px;
  background: var(--light-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 70px;
}

.marquee-item img {
  max-height: 42px;
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
}

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

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


/* ========================================
   OFFERS
   ======================================== */
.offers-section {
  background: var(--bg);
}

.offer-group {
  margin-bottom: 48px;
}

.offer-group-header {
  margin-bottom: 20px;
}

.offer-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(26, 154, 175, .3);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  background: rgba(26, 154, 175, .08);
}

.offer-label.nexis {
  color: var(--gold);
  border-color: rgba(240, 165, 0, .3);
  background: rgba(240, 165, 0, .08);
}

.offer-cards {
  display: grid;
  gap: 20px;
}

.offer-cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.offer-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all .35s var(--ease);
  position: relative;
}

.offer-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.offer-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.offer-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.offer-card p {
  font-size: .85rem;
  color: var(--white-50);
  line-height: 1.6;
}

.offer-group-cta {
  margin-top: 20px;
}

/* Communé label */
.offer-label.commune {
  color: #a78bfa;
  border-color: rgba(167, 139, 250, .3);
  background: rgba(167, 139, 250, .08);
}

/* ---- Image-based service cards ---- */
.service-cards {
  display: grid;
  gap: 20px;
}

.service-cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.service-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

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

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 10, 18, .85) 100%);
  pointer-events: none;
}

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

.service-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.service-subtitle {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: .85rem;
  color: var(--white-50);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.btn-sm {
  padding: 10px 20px;
  font-size: .82rem;
}

/* Play button overlay on service card image */
.service-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(26, 154, 175, .85);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 24px var(--accent-glow);
  transition: transform .3s, box-shadow .3s;
  z-index: 3;
  backdrop-filter: blur(4px);
}

.service-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 40px var(--accent-glow);
}

/* Video Lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .35s var(--ease);
  backdrop-filter: blur(8px);
}

.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2.2rem;
  color: var(--white-70);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: color .2s;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--white);
}

.lightbox-content {
  max-width: 900px;
  width: 92%;
}

.lightbox-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}

.lightbox-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 154, 175, .25);
  box-shadow: 0 0 50px rgba(26, 154, 175, .12);
  aspect-ratio: 16 / 9;
  background: #000;
}

.lightbox-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ========================================
   HERO MEDIA
   ======================================== */
.hero-media {
  max-width: 800px;
  margin: 32px auto 28px;
}

.hero-media-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 154, 175, .25);
  box-shadow: 0 0 60px rgba(26, 154, 175, .15), 0 10px 40px rgba(0, 0, 0, .4);
  aspect-ratio: 16 / 9;
}

.hero-media-inner video,
.hero-media-img,
.hero-media-inner iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
}

.hero-yt-link {
  position: absolute;
  bottom: 12px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--white-50);
  background: rgba(0, 0, 0, .55);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  z-index: 4;
  transition: color .2s, background .2s;
  backdrop-filter: blur(4px);
}

.hero-yt-link:hover {
  color: var(--white);
  background: rgba(0, 0, 0, .8);
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 10, 18, .6) 100%);
  pointer-events: none;
}

.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(26, 154, 175, .85);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 30px var(--accent-glow);
  transition: transform .3s, box-shadow .3s;
  backdrop-filter: blur(4px);
}

.hero-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 50px var(--accent-glow);
}


/* ========================================
   SELECT DROPDOWN STYLING
   ======================================== */
select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: .92rem;
  color: var(--white-70);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
  transition: border-color .25s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select:focus {
  border-color: var(--accent);
}

select option,
select optgroup {
  background: var(--bg-elevated);
  color: var(--white-70);
}

/* ========================================
   PROCESS
   ======================================== */
.process-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--gold));
}

.process-step {
  position: relative;
  margin-bottom: 28px;
  padding: 18px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}

.process-step:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.step-num {
  position: absolute;
  left: -48px;
  top: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .88rem;
  border: 3px solid var(--bg-elevated);
}

.step-content h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.step-content p {
  font-size: .85rem;
  color: var(--white-50);
}


/* ========================================
   EVENTS
   ======================================== */
.events-section {
  background: var(--bg);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Event list (left column) */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-list-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s var(--ease);
}

.event-list-card:hover,
.event-list-card.active {
  border-color: var(--gold);
  background: rgba(240, 165, 0, .05);
}

.event-date-badge {
  flex-shrink: 0;
  width: 52px;
  text-align: center;
  padding: 6px 0;
  background: var(--accent);
  border-radius: 8px;
  color: var(--white);
}

.event-date-badge .edb-month {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-date-badge .edb-day {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.1;
}

.event-list-info h4 {
  font-size: .88rem;
  color: var(--white);
  margin-bottom: 2px;
}

.event-list-info .event-link {
  font-size: .72rem;
  color: var(--accent);
  font-weight: 600;
}

/* Event detail (center column) */
.event-detail {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.event-detail h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.event-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--white-50);
}

.event-meta-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.event-meta-item strong {
  color: var(--white-70);
}

.event-status-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.event-status-btn.open {
  background: var(--accent);
  color: var(--white);
}

.event-status-btn.open:hover {
  background: var(--accent-dark);
}

.event-status-btn.closed {
  background: var(--white-10);
  color: var(--white-50);
  cursor: default;
}

/* Event poster (right column) */
.event-poster {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.event-poster-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0a1e3d, #0e3a50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--white);
}

.poster-text {
  color: var(--white-30);
  font-size: .8rem;
  text-align: center;
}


/* ========================================
   BRANDS CAROUSEL
   ======================================== */
.brands-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.brands-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--white-50);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s var(--ease);
}

.carousel-arrow:hover {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(26, 154, 175, .1);
}

.carousel-track-wrapper {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .4s var(--ease);
}

.brand-card {
  flex-shrink: 0;
  width: 180px;
  padding: 24px 16px;
  text-align: center;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}

.brand-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.brand-logo-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 12px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.brand-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-card h4 {
  font-size: .82rem;
  margin-bottom: 2px;
}

.brand-owner {
  font-size: .68rem;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.brand-card p {
  font-size: .7rem;
  color: var(--white-50);
}


/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background: var(--gradient-cta);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  filter: blur(80px);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.cta-banner p {
  color: var(--white-50);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


/* ========================================
   CONTACT
   ======================================== */
.contact-section {
  background: var(--bg);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  transition: all .3s var(--ease);
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.c-icon {
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.contact-card h4 {
  font-size: .92rem;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: .85rem;
  color: var(--white-50);
}


/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #030812;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  color: var(--white-50);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.footer-rdr {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}

.footer-sub {
  display: block;
  font-size: .5rem;
  letter-spacing: 2px;
  opacity: .4;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: .82rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: .82rem;
  color: var(--white-50);
  margin-bottom: 8px;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: .76rem;
  color: var(--white-30);
}


/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .35s var(--ease);
  box-shadow: var(--shadow-glow);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-4px);
}


/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 10, 18, .85);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: all .35s var(--ease);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 90%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(.96);
  transition: transform .4s var(--ease);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .7);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white-50);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color .2s;
}

.modal-close:hover {
  color: var(--white);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.modal-header h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.modal-header p {
  font-size: .88rem;
  color: var(--white-50);
}

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

.lead-form .form-group {
  margin-bottom: 14px;
}

.lead-form label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: 4px;
}

.req {
  color: #e53e3e;
}

.opt {
  color: var(--white-30);
  font-weight: 400;
  font-size: .72rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font);
  font-size: .86rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-glass);
  color: var(--white);
  outline: none;
  transition: all .25s var(--ease);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--white-30);
}

.lead-form textarea {
  resize: vertical;
  min-height: 50px;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--white-70);
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--accent);
  cursor: pointer;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, .15);
}

.error-msg {
  font-size: .72rem;
  color: #e53e3e;
  margin-top: 3px;
}

.form-note {
  text-align: center;
  font-size: .72rem;
  color: var(--white-30);
  margin-top: 12px;
}

.form-note a {
  color: var(--accent);
  text-decoration: underline;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-check {
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.form-success p {
  color: var(--white-50);
  margin-bottom: 20px;
}


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width:1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .event-poster {
    display: none;
  }

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

@media (max-width:768px) {
  .section {
    padding: 72px 0;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--bg-elevated);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    transition: right .4s var(--ease);
    box-shadow: -4px 0 30px rgba(0, 0, 0, .5);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.02rem;
  }

  .btn-cta-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-headline {
    font-size: 1.8rem;
  }

  .strip-cards {
    flex-direction: column;
    align-items: center;
  }

  .strip-card {
    max-width: 100%;
  }

  .about-grid {
    gap: 32px;
  }

  .offer-cards-3,
  .offer-cards-2,
  .service-cards-3,
  .service-cards-2 {
    grid-template-columns: 1fr;
  }

  .social-cards {
    grid-template-columns: 1fr;
  }

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

  .event-poster {
    display: none;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

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

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

  .modal {
    padding: 28px 20px;
  }

  .process-timeline {
    padding-left: 44px;
  }

  .brand-card {
    width: 150px;
  }
}

@media (max-width:480px) {
  .hero-headline {
    font-size: 1.5rem;
  }

  .brand-card {
    width: 130px;
  }
}

/* ========================================
   RESULTS / MILLION VIEWS SECTION
   ======================================== */
.results-section {
  background: linear-gradient(165deg, #071520 0%, #0a1e2e 40%, #0c2232 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(26, 154, 175, .15);
  border-bottom: 1px solid rgba(26, 154, 175, .15);
}

.results-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26, 154, 175, .1) 0%, transparent 65%);
  pointer-events: none;
}

/* --- Showcase Grid --- */
.results-showcase {
  margin-top: 48px;
  margin-bottom: 40px;
}

.showcase-heading {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-50);
  text-align: center;
  margin-bottom: 24px;
}

/* --- Viral Videos Marquee --- */
.viral-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.viral-marquee-track {
  display: flex;
  gap: 16px;
  animation: viralScroll 40s linear infinite;
  width: max-content;
}

.viral-item {
  flex-shrink: 0;
  width: 180px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.viral-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.viral-item:hover img {
  transform: scale(1.05);
}

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

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

@media (max-width:768px) {
  .viral-item {
    width: 140px;
  }
}

@media (max-width:480px) {
  .viral-item {
    width: 120px;
  }
}

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

.result-stat {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  background: rgba(26, 154, 175, .04);
  border: 1px solid var(--border);
  transition: transform .3s, border-color .3s;
}

.result-stat:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.result-num {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.result-suffix {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--accent);
}

.result-label {
  display: block;
  margin-top: 8px;
  font-size: .82rem;
  color: var(--white-50);
  font-weight: 500;
}

/* ========================================
   STUDIO SECTION
   ======================================== */
.studio-section {
  background: linear-gradient(170deg, #060e1a 0%, #0b1c30 50%, #0d2438 100%);
  border-top: 1px solid rgba(26, 154, 175, .12);
}

.studio-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.studio-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.studio-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
}

.studio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.studio-img:hover img {
  transform: scale(1.04);
}

.studio-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.studio-features h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.studio-features p {
  margin-bottom: 16px;
}

.studio-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.studio-list li {
  font-size: .92rem;
  color: var(--white-70);
  padding-left: 20px;
  position: relative;
}

.studio-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.studio-quote {
  font-style: italic;
  color: var(--white-50);
  font-size: .88rem;
}

.studio-highlight {
  background: rgba(26, 154, 175, .06);
  border: 1px solid rgba(26, 154, 175, .2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.studio-highlight p {
  margin-bottom: 16px;
  font-size: .92rem;
}

.studio-list-alt {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.studio-list-alt li {
  font-size: .88rem;
  color: var(--accent);
  padding-left: 20px;
  position: relative;
}

.studio-list-alt li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.studio-cta-text {
  font-size: .85rem;
  color: var(--white-50);
}

/* ---- Responsive: Results + Studio ---- */
@media (max-width:768px) {
  .results-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .studio-img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .studio-img-lg {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .studio-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width:480px) {
  .results-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .result-stat {
    padding: 24px 12px;
  }
}

/* ========================================
   VIDEO LIGHTBOX
   ======================================== */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, .1);
}

.lightbox-content {
  width: 90%;
  max-width: 900px;
}

.lightbox-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-align: center;
}

.lightbox-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}

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