/* Hero Section */
.bp-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bp-hero-image,
.bp-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.bp-hero-placeholder {
  background: linear-gradient(135deg, var(--bp-ink) 0%, var(--bp-gray-700) 100%);
}

.bp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bp-ink);
  z-index: 1;
}

.bp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 0 20px;
}

.bp-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  color: #FFFFFF;
}

.bp-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.bp-hero-actions {
  margin-bottom: 60px;
}

.bp-hero-cta {
  padding: 18px 48px;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(255, 170, 0, 0.3);
}

.bp-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  animation: bounce 2s infinite;
  cursor: pointer;
  color: #FFFFFF;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Clients Section */
.bp-clients-section {
  background: var(--bp-card-bg);
  overflow: hidden;
}

.bp-clients-marquee {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}

.bp-marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.bp-marquee-track:hover {
  animation-play-state: paused;
}

.bp-client-logo {
  flex-shrink: 0;
  width: 200px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bp-bg);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bp-client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.bp-client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

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

/* Services Section */
.bp-services-section {
  background: var(--bp-bg);
}

.bp-services-grid {
  gap: 24px;
}

.bp-service-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.bp-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bp-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.bp-service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.bp-service-card:hover .bp-service-icon {
  transform: scale(1.2);
}

.bp-service-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--bp-text);
  transition: color 0.3s ease;
}

.bp-service-card:hover .bp-service-title {
  color: var(--bp-primary);
}

.bp-service-desc {
  font-size: 14px;
  color: var(--bp-text-secondary);
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .bp-service-desc {
  color: var(--bp-text-secondary);
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .bp-hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .bp-hero-content {
    padding: 0 20px;
  }
  
  .bp-hero-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .bp-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .bp-hero-cta {
    padding: 14px 32px;
    font-size: 15px;
  }
  
  .bp-hero-scroll {
    bottom: 20px;
    font-size: 24px;
  }
  
  .bp-client-logo {
    width: 140px;
    height: 50px;
    padding: 12px;
  }
  
  .bp-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .bp-service-card {
    padding: 24px 20px;
  }
  
  .bp-service-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }
  
  .bp-service-title {
    font-size: 16px;
  }
  
  .bp-service-desc {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .bp-hero {
    height: 60vh;
    min-height: 450px;
  }
  
  .bp-hero-title {
    font-size: 1.75rem;
  }
  
  .bp-hero-subtitle {
    font-size: 0.95rem;
  }
  
  .bp-hero-cta {
    padding: 12px 28px;
    font-size: 14px;
  }
  
  .bp-client-logo {
    width: 120px;
    height: 45px;
  }
}

