:root {
  --ma-ink: #0f172a;
  --ma-ink-2: #1f2937;
  --ma-soft: #f8fafc;
  --ma-line: #e2e8f0;
  --ma-accent: #06b6d4;
  --ma-accent-2: #f59e0b;
  --ma-accent-3: #8b5cf6;
  --ma-success: #16a34a;
  --ma-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--ma-ink);
  background: var(--ma-soft);
}

h1, h2, h3, h4 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.02em;
}

.meetalent-hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 55%, rgba(15, 23, 42, 0.5) 100%),
              url('/frontend/images/main-slider/slider2/bg1.jpg') center/cover no-repeat;
  padding: 120px 0 90px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(6, 182, 212, 0.4), transparent 40%),
                    radial-gradient(circle at 85% 15%, rgba(139, 92, 246, 0.35), transparent 45%),
                    radial-gradient(circle at 60% 80%, rgba(245, 158, 11, 0.2), transparent 50%);
  opacity: 0.9;
  filter: blur(2px);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.12);
  color: var(--ma-ink-2);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--ma-shadow);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-card .stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--ma-line);
}

.hero-card .stat:last-child {
  border-bottom: none;
}

.hero-cta {
  background: linear-gradient(120deg, var(--ma-accent), var(--ma-accent-3));
  border: none;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 18px 30px rgba(6, 182, 212, 0.3);
}

.hero-cta-outline {
  background: transparent;
  border: 1px solid var(--ma-ink);
  color: var(--ma-ink);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
}

.meetalent-section {
  padding: 90px 0;
}

.section-title {
  max-width: 640px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  color: var(--ma-accent);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.timeline {
  position: relative;
  border-left: 2px dashed rgba(148, 163, 184, 0.4);
  padding-left: 28px;
}

.timeline-step {
  position: relative;
  margin-bottom: 30px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ma-accent);
  box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.15);
}

.stats-band {
  background: #0f172a;
  color: #fff;
  border-radius: 24px;
  padding: 30px;
}

.stats-band .stat-number {
  font-size: 2rem;
  font-weight: 700;
}

.cta-panel {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--ma-shadow);
}

.fade-up {
  animation: fadeUp 0.8s ease both;
}

.fade-up.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2 { animation-delay: 0.2s; }
.fade-up.delay-3 { animation-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .meetalent-hero { padding: 90px 0 70px; }
  .stats-band { text-align: center; }
  .hero-card { margin-top: 24px; }
}

@media (max-width: 767px) {
  .meetalent-hero { min-height: auto; padding: 90px 0 70px; }
  .hero-board { margin-top: 24px; }
}

.meetalent-hero .hero-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-collage {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-collage .collage-main {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-collage .collage-float {
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 55%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.4);
}

.hero-cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.feature-icon i {
  line-height: 1;
}
