* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --secondary: #a855f7;
  --accent: #ec4899;
  --success: #10b981;
  --dark: #0f172a;
  --light: #f8fafc;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: rgba(203, 213, 225, 0.3);
  --shadow: rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #fef3f2 100%);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ===== PREMIUM GRADIENT MESH BACKGROUND ===== */
.gradient-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: meshFloat 25s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #c7d2fe, #e0e7ff);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #dbeafe, #f0f9ff);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.blob-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #fce7f3, #fbcfe8);
  top: 50%;
  left: 50%;
  animation-delay: 10s;
}

.blob-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #fed7aa, #fef3c7);
  top: 30%;
  right: 10%;
  animation-delay: 15s;
}

.blob-5 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #e0e7ff, #c7d2fe);
  bottom: 20%;
  left: 30%;
  animation-delay: 20s;
}

@keyframes meshFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(50px, -80px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(-40px, 60px) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translate(60px, 40px) rotate(270deg) scale(1.05);
  }
}

/* ===== ANIMATED GRID PATTERN ===== */
.grid-pattern {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

/* ===== FLOATING GEOMETRIC SHAPES ===== */
.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.geo-shape {
  position: absolute;
  opacity: 0.1;
  animation: geoFloat 20s ease-in-out infinite;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid var(--primary);
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--secondary);
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.square {
  width: 80px;
  height: 80px;
  background: var(--accent);
  transform: rotate(45deg);
  bottom: 25%;
  left: 20%;
  animation-delay: 10s;
}

.hexagon {
  width: 100px;
  height: 60px;
  background: var(--primary);
  position: relative;
  top: 40%;
  right: 25%;
  animation-delay: 15s;
}

.hexagon::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 30px solid var(--primary);
}

.hexagon::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 30px solid var(--primary);
}

.diamond {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: rotate(45deg);
  top: 25%;
  right: 30%;
  animation-delay: 7s;
}

@keyframes geoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-40px) rotate(90deg);
  }
  50% {
    transform: translateY(-80px) rotate(180deg);
  }
  75% {
    transform: translateY(-40px) rotate(270deg);
  }
}

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-inner {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 45px 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .nav-wrapper {
  padding: 15px 60px;
}

.logo {
  height: 90px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.2));
}

.navbar.scrolled .logo {
  height: 60px;
}

.menu {
  display: flex;
  gap: 40px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.menu-link {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.menu-link span {
  position: relative;
  z-index: 2;
}

.link-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.menu-link:hover .link-underline,
.menu-link.active .link-underline {
  transform: scaleX(1);
}

.menu-link:hover,
.menu-link.active {
  color: var(--primary);
}

.contact-btn {
  position: relative;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: glow-rotate 3s linear infinite;
}

.contact-btn:hover .btn-glow {
  opacity: 1;
}

@keyframes glow-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
  z-index: 10;
}

.hero-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.circle-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  animation: orbit-spin 30s linear infinite;
}

.orbit-1 {
  width: 400px;
  height: 400px;
  animation-delay: 0s;
}

.orbit-2 {
  width: 600px;
  height: 600px;
  animation-delay: 10s;
}

.orbit-3 {
  width: 800px;
  height: 800px;
  animation-delay: 20s;
}

@keyframes orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.badge-text {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
}

.badge-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.hero-title {
  margin-bottom: 28px;
  font-family: 'Poppins', sans-serif;
}

.title-line {
  display: block;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  position: relative;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.title-line::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: gradient-reveal 1s ease 0.5s forwards;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}

.gradient-line {
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite, fadeInUp 0.8s ease 0.4s backwards;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes gradient-reveal {
  to {
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.3;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s backwards;
}

.cta-primary,
.cta-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cta-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
}

.cta-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

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

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: bounce 2s infinite;
}

.mouse {
  width: 28px;
  height: 44px;
  border: 2px solid var(--primary);
  border-radius: 14px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel-scroll 1.5s infinite;
}

@keyframes wheel-scroll {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 24px;
    opacity: 0;
  }
}

.scroll-indicator span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 60px 60px;
  position: relative;
  z-index: 10;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
  border-color: var(--primary);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 16px;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== SECTION COMMON STYLES ===== */
.section {
  padding: 100px 60px;
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BENEFIT CARDS ===== */
.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.benefit-card {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  padding: 50px 35px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}


.card-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(99, 102, 241, 0.08);
  font-family: 'Poppins', sans-serif;
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 50%;
}

.benefit-card:hover .card-glow {
  opacity: 1;
  animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.benefit-card:hover .card-shine {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 70px rgba(99, 102, 241, 0.25);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 64px;
  margin-bottom: 24px;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(8deg);
  }
}

.benefit-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ===== POSITION CARDS ===== */
.positions-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.position-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.position-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.position-card.featured {
  border: 3px solid var(--primary);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05));
}

.featured-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.position-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.position-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.position-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.position-card > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.position-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.position-meta span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.position-apply {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.position-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.position-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.position-card:hover .position-glow {
  opacity: 1;
  animation: glow-pulse 2s infinite;
}

.position-card:hover {
  transform: translateY(-8px) rotateZ(0.5deg);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
  border-color: var(--primary);
}

/* ===== FORM SECTION ===== */
.form-section {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02), rgba(168, 85, 247, 0.02));
  position: relative;
  overflow: hidden;
}

.form-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.form-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 60px 50px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(99, 102, 241, 0.05), transparent 30deg);
  animation: rotate 25s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.form-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.form-header h2 {
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.form-header p {
  font-size: 16px;
  color: var(--text-muted);
}

.career-form {
  position: relative;
  z-index: 2;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.required {
  color: var(--accent);
}

.input-wrapper {
  position: relative;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 16px 48px 16px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(203, 213, 225, 0.5);
  border-radius: 14px;
  color: var(--dark);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 140px;
  padding-right: 18px;
}

.input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.5;
  pointer-events: none;
}

.input-wrapper:has(textarea) .input-icon {
  top: 20px;
  transform: none;
}

.submit-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.4);
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.submit-btn:active .btn-ripple {
  animation: ripple 0.6s ease;
}

@keyframes ripple {
  to {
    width: 400px;
    height: 400px;
    opacity: 0;
  }
}

/* ===== SUCCESS MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 60px 50px;
  max-width: 550px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
  animation: modalPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.success-animation {
  position: relative;
  margin-bottom: 30px;
}

.success-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--success), #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
  animation: successScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successScale {
  0% {
    transform: scale(0) rotate(-180deg);
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.success-checkmark {
  animation: checkmarkDraw 0.8s ease 0.3s backwards;
}

@keyframes checkmarkDraw {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.checkmark-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: checkmarkAnimate 0.6s ease 0.5s forwards;
}

@keyframes checkmarkAnimate {
  to {
    stroke-dashoffset: 0;
  }
}

.success-particles {
  position: absolute;
  inset: 0;
}

.success-particles .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  animation: particle-explode 1s ease forwards;
}

.success-particles .particle:nth-child(1) {
  animation-delay: 0.5s;
  --angle: 0deg;
}

.success-particles .particle:nth-child(2) {
  animation-delay: 0.55s;
  --angle: 72deg;
}

.success-particles .particle:nth-child(3) {
  animation-delay: 0.6s;
  --angle: 144deg;
}

.success-particles .particle:nth-child(4) {
  animation-delay: 0.65s;
  --angle: 216deg;
}

.success-particles .particle:nth-child(5) {
  animation-delay: 0.7s;
  --angle: 288deg;
}

@keyframes particle-explode {
  0% {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-80px);
    opacity: 0;
  }
}

.modal-content h3 {
  font-size: 36px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.modal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal-btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.modal-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.modal-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.modal-btn.secondary {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
}

.modal-btn.secondary:hover {
  background: rgba(99, 102, 241, 0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-wrapper {
    padding: 20px 40px;
  }
  
  .menu {
    gap: 24px;
  }
  
  .positions-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 15px 24px;
  }
  
  .menu {
    display: none;
  }
  
  .logo {
    height: 60px;
  }
  
  .hero {
    padding: 120px 24px 60px;
  }
  
  .hero-title .title-line {
    font-size: clamp(36px, 10vw, 60px);
  }
  
  .stats-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .section {
    padding: 60px 24px;
  }
  
  .benefits-grid,
  .positions-container {
    grid-template-columns: 1fr;
  }
  
  .form-card {
    padding: 40px 24px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    padding: 40px 30px;
    margin: 20px;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-btn {
    width: 100%;
  }
}

/* ===== FILE UPLOAD STYLING ===== */

.file-upload-wrapper {
  position: relative;
  padding: 0;
  border: 2px dashed rgba(99,102,241,0.3);
  border-radius: 14px;
  background: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-wrapper:hover {
  border-color: #6366f1;
  background: rgba(99,102,241,0.05);
}

.file-upload-wrapper input[type="file"] {
  display: none;
}

.file-upload-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
}

.file-icon {
  font-size: 18px;
}

.file-upload-wrapper.active {
  border-color: #10b981;
  background: rgba(16,185,129,0.08);
}
