:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --teal: #0d9488;
  --teal-dark: #0b7c72;
  --light-bg: #f7f9fb;
  --text: #2d3748;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #e2e8f0;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Header */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}
.logo { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.logo span { color: var(--teal); }
nav ul { display: flex; gap: 32px; }
nav a { font-weight: 500; color: var(--text); transition: color 0.2s; }
nav a:hover, nav a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--teal-dark); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 100px 24px 90px;
  text-align: center;
}
.hero h1 { font-size: 2.6rem; margin-bottom: 20px; line-height: 1.25; }
.hero h1 .highlight { color: var(--teal); display: block; }
.hero p { font-size: 1.15rem; color: #cbd5e1; max-width: 620px; margin: 0 auto 36px; }
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-secondary {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 12px;
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* Sections */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2rem; color: var(--navy); margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 48px; }

/* Cards / Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; margin-bottom: 18px;
}
.card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.2rem; }
.card p { color: var(--muted); font-size: 0.96rem; }

.alt-bg { background: var(--light-bg); }

/* Stats */
.stats { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; text-align: center; }
.stat h3 { font-size: 2.2rem; color: var(--teal); }
.stat p { color: var(--muted); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin: 0 auto 16px;
}

/* Contact form */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-group { margin-bottom: 18px; }
label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
}
textarea { resize: vertical; min-height: 120px; }
.info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.info-icon {
  width: 40px; height: 40px; background: var(--teal); color: var(--white);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
}
.cta-band h2 { margin-bottom: 20px; }

/* Footer */
footer {
  background: #0a0f1c;
  color: #9ca3af;
  padding: 40px 24px 24px;
  text-align: center;
  font-size: 0.9rem;
}
footer .logo { color: var(--white); margin-bottom: 12px; }

/* Testimonials */
.testimonial { border-left: 4px solid var(--teal); padding-left: 20px; }
.testimonial p { font-style: italic; margin-bottom: 12px; }
.testimonial .name { font-weight: 700; color: var(--navy); }

/* Region badges */
.region-bar {
  background: rgba(13,148,136,0.12);
  border: 1px solid rgba(13,148,136,0.3);
  color: #5eead4;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.region-bar span { opacity: 0.6; }

/* Hero animation */
.hero-animation {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 300px;
  margin: 44px auto 0;
}
.floating-chip {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #e2e8f0;
  white-space: nowrap;
  opacity: 0;
  animation: popFade 6s ease-in-out infinite;
}
@keyframes popFade {
  0%   { opacity: 0; transform: scale(0.5) translateY(16px); }
  8%   { opacity: 1; transform: scale(1) translateY(0); }
  52%  { opacity: 1; transform: scale(1) translateY(0); }
  68%  { opacity: 0; transform: scale(0.8) translateY(-16px); }
  100% { opacity: 0; }
}
.final-cards {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: finalReveal 6s ease-in-out infinite;
}
@keyframes finalReveal {
  0%, 58% { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
  74%     { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
  88%     { transform: translate(-50%, -50%) scale(1); }
  100%    { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.final-card {
  background: var(--white);
  color: var(--navy);
  border-radius: 12px;
  padding: 18px 20px;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  border: 2px solid var(--teal);
}
.final-card .fc-icon { font-size: 1.6rem; margin-bottom: 6px; }
.final-card .fc-title { font-weight: 700; font-size: 0.92rem; }
.final-card .fc-check { color: var(--teal); font-weight: 700; font-size: 0.8rem; margin-top: 4px; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Career stage tabs */
.stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.stage-card .stage-num {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.stage-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.stage-card p { color: var(--muted); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
  nav ul { display: none; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .stats { gap: 30px; }
  section { padding: 56px 20px; }
  .hero-animation { height: 240px; }
  .floating-chip { font-size: 0.72rem; padding: 6px 10px; }
  .final-cards { flex-direction: row; gap: 10px; }
  .final-card { min-width: 120px; padding: 12px 14px; }
  .stage-grid { grid-template-columns: 1fr; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 16px; right: 16px; }
}
