/* ========================================
   PREMIUM LEFT-RIGHT SPLIT HERO
   ======================================== */

.company-hero-split-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  margin-top: 60px;
}

/* Left Content Section */
.hero-left {
  background: linear-gradient(135deg, #0f3c4c 0%, #165a72 100%);
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
}

.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(190, 224, 236, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content-inner {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* Badge */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #bee0ec;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge-pill span:not(.badge-dot) {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Title */
.hero-main-title {
  margin-bottom: 20px;
}

.title-line {
  display: block;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.title-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  color: rgba(190, 224, 236, 0.9);
  letter-spacing: 0.2px;
}

/* Description */
.hero-description {
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 32px;
}

/* Metrics */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.metric-item {
  text-align: left;
}

.metric-value {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #bee0ec;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 1.3;
}

/* Right Image Section */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-hero-split-premium:hover .hero-image-wrapper img {
  transform: scale(1.05);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 60, 76, 0.5) 0%, rgba(15, 60, 76, 0.3) 100%);
}

/* Animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .company-hero-split-premium {
    min-height: 450px;
  }
  
  .hero-left {
    padding: 50px 40px;
  }
  
  .hero-metrics {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .company-hero-split-premium {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-left {
    padding: 60px 32px;
  }
  
  .hero-right {
    height: 400px;
  }
  
  .hero-metrics {
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .hero-left {
    padding: 50px 24px;
  }
  
  .hero-right {
    height: 300px;
  }
  
  .hero-badge-pill {
    padding: 6px 16px;
    margin-bottom: 20px;
  }
  
  .badge-dot {
    width: 5px;
    height: 5px;
  }
  
  .hero-badge-pill span:not(.badge-dot) {
    font-size: 11px;
  }
  
  .hero-description {
    margin-bottom: 28px;
  }
  
  .hero-metrics {
    gap: 24px;
  }
}
