/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  padding: 80px 0 80px;
  background: var(--gradient-light);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.hero-image {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.image-wrapper img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark-65) 0%, transparent 50%);
}

.floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  top: 8%;
  right: -55px;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent-pink);
  bottom: 18%;
  left: -35px;
  animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent-blue);
  bottom: 8%;
  right: 12%;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-24px) rotate(180deg);
  }
}

.hero-content {
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 11px 28px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: var(--shadow-md);
  animation: slideInRight 0.8s ease-out 0.5s backwards;
  letter-spacing: 0.3px;
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--slate-800);
  margin-bottom: 18px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -1px;
}

.title-underline {
  width: 90px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  animation: expandWidth 1s ease-out 0.8s backwards;
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 100px; }
}

.hero-description,
.hero-vision {
  font-size: 17px;
  line-height: 1.85;
  color: var(--slate-600);
  margin-bottom: 22px;
  font-weight: 500;
}

.hero-vision strong {
  color: var(--primary-indigo);
  font-weight: 800;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin: 42px 0;
}

.btn {
  padding: 16px 42px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-indigo));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-primary:hover .btn-glow {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary-indigo);
  border: 2px solid var(--primary-indigo);
}

.btn-secondary:hover {
  background: var(--primary-indigo);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

.stats {
  display: flex;
  gap: 48px;
  margin-top: 52px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 38px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: var(--slate-500);
  font-weight: 700;
}

/* ========================================
   VIDEO SECTION
   ======================================== */

.video-section {
  padding: 100px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  background: var(--white-8);
  border-radius: 50%;
  top: -275px;
  right: -275px;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  color: white;
  letter-spacing: -0.5px;
}

.video-section .section-subtitle {
  font-size: 19px;
  color: var(--white-92);
  font-weight: 500;
}

.video-container {
  max-width: 950px;
  margin: 0 auto;
}

.video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  position: relative;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-700) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.video-placeholder:hover {
  transform: scale(1.01);
}

.play-button {
  width: 100px;
  height: 100px;
  position: relative;
  margin-bottom: 24px;
}

.play-icon {
  width: 100px;
  height: 100px;
  background: var(--white-18);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
  z-index: 2;
}

.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 28px solid white;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  margin-right: -6px;
}

.video-placeholder:hover .play-icon {
  background: var(--white-25);
  transform: scale(1.12);
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid white;
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.video-text {
  color: white;
  font-size: 19px;
  font-weight: 700;
}

/* ========================================
   SECTION UTILITIES
   ======================================== */

.title-underline-center {
  width: 75px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  margin: 16px auto 0;
}