/* ============================================================================
 * Hero Section — Premium Agency Style
 * ========================================================================== */

.wb-hero-section {
  position: relative;
  background-color: var(--wb-color-bg);
  color: var(--wb-color-text);
  padding-block: clamp(4rem, 10vw, 8rem);
  overflow: hidden;
}

/* Blurred Gradient Orbs */
.wb-hero-section::before,
.wb-hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.wb-hero-section::before {
  top: -10%;
  left: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4), rgba(37, 99, 235, 0.2));
}

.wb-hero-section::after {
  bottom: -10%;
  right: -5%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3), rgba(244, 63, 94, 0.1));
}

.wb-hero-section .wb-container {
  position: relative;
  z-index: 1; /* Above the orbs */
}

/* Grid Layout */
.wb-hero-grid {
  display: grid;
  gap: var(--wb-space-8);
  align-items: center;
}
@media (min-width: 768px) {
  .wb-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Typography & Content */
.wb-hero-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  font-size: var(--wb-font-size-sm);
  font-weight: 600;
  color: var(--wb-color-brand);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 9999px;
  margin-bottom: var(--wb-space-4);
  animation: fadeInUp 0.8s ease-out;
}

.wb-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: var(--wb-space-4);
  color: var(--wb-color-white);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.wb-text-gradient {
  background-image: linear-gradient(135deg, #eab308, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.wb-hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #9ca3af; /* Light gray */
  margin-bottom: var(--wb-space-6);
  max-width: 500px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Buttons */
.wb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wb-space-4);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.wb-hero-actions .wb-btn--primary {
  background-color: #3b82f6; /* Solid brand color */
  color: #ffffff;
  border-color: #3b82f6;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.wb-hero-actions .wb-btn--primary:hover {
  transform: translateY(-2px);
  background-color: #2563eb;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.wb-hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--wb-color-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--wb-radius-md);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.wb-hero-btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.wb-icon-play {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
}

/* Right Column Visuals */
.wb-hero-visual {
  position: relative;
  width: 100%;
  border-radius: var(--wb-radius-xl);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.wb-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--wb-radius-lg);
  display: block;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Glassmorphism Cards */
.wb-hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--wb-radius-md);
  padding: var(--wb-space-3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: var(--wb-space-3);
  animation: floatCard 6s ease-in-out infinite;
  z-index: 2;
}

.wb-hero-card--top {
  top: 10%;
  left: -10%;
}

.wb-hero-card--bottom {
  bottom: 10%;
  right: -5%;
  animation-delay: -3s;
}

.wb-hero-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #eab308, #3b82f6);
  border-radius: 50%;
  color: white;
  font-weight: bold;
}

.wb-hero-card-text {
  display: flex;
  flex-direction: column;
}
.wb-hero-card-text strong {
  font-size: var(--wb-font-size-sm);
  color: var(--wb-color-white);
  line-height: 1.2;
}
.wb-hero-card-text span {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
