/* =============================================
   WORK PAGE — work.css
   ============================================= */

/* Active nav link (shared with services/learn) */
.nav-active {
  position: relative;
}
.nav-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

.work-hero {
  padding: 160px 60px 60px;
  text-align: center;
}

.work-hero h1 {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-main);
}

.work-hero-desc {
  font-size: 18px;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

.work-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 40px 60px;
  max-width: 1200px;
  margin: 0 auto 100px;
}

.work-logos a {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.work-logos a:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.work-logo-img {
  height: 150px;
  width: auto;
  max-width: 540px;
  object-fit: contain;
}

.work-sections {
  padding: 0 60px 100px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1000px;
  margin: 0 auto;
}

.work-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.work-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 15px;
}

.work-section p {
  font-size: 18px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .work-hero {
    padding: 120px 20px 40px;
  }
  .work-logos {
    gap: 30px;
    padding: 20px;
  }
  .work-logo-img {
    height: 140px;
  }
  .work-sections {
    padding: 0 20px 80px;
    gap: 60px;
  }
}
