/* ===== GLOBAL ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #fff;
  color: #2a3343;
}
a {
  text-decoration: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: #fff;
  padding: 56px 0 56px;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 80px 0 80px;
  }
}
.hero-section h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.96px;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 48px;
  }
}
.hero-section h1 .blue {
  color: #3a58ef;
}
.hero-section h1 .dark {
  color: #1d2939;
}
.hero-subtitle {
  color: #475467;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 24px;
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 24px;
  }
}
.country-badge {
  background: #182878;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 4px 14px 4px 4px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.country-badge img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.btn-apply {
  background: #3a58ef;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 4px;
  border: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-apply:hover {
  background: #2d48d6;
  color: #fff;
}

/* ===== HIRING PROCESS ===== */
.hiring-section {
  background: #ebeefd;
  padding: 64px 0 80px;
}
.section-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.72px;
  color: #26244a;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}
.section-title .blue {
  color: #3a58ef;
}
.section-subtitle {
  color: #475467;
  font-size: 16px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .section-subtitle {
    font-size: 18px;
  }
}
.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #d0d5dd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #1d2939;
  letter-spacing: -0.48px;
  flex-shrink: 0;
}
.step-circle-sm {
  width: 72px;
  height: 72px;
  font-size: 24px;
}
.duration-chip {
  background: #d8defc;
  border-radius: 50px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #182878;
  font-size: 13px;
  font-weight: 500;
}
.step-title {
  color: #2a3343;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 4px;
}
.step-desc {
  color: #2a3343;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  max-width: 190px;
  margin: 0 auto;
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
}

/* ===== CARD HOVER EFFECT (Career Growth + Domains) ===== */
.hover-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eaecf0;
  padding: 24px;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.hover-card:hover {
  transform: translateY(-6px);
  border-color: #26244a;
  box-shadow: 3px 3px 0px 0px #26244a;
}
.hover-card .icon-box {
  background: #ebeefd;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.hover-card .icon-box i {
  font-size: 22px;
  color: #3a58ef;
  transition: color 0.3s;
}
.hover-card:hover .icon-box {
  background: #26244a;
}
.hover-card:hover .icon-box i {
  color: #fff;
}
.exp-badge {
  background: #ebeefd;
  color: #182878;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
}
.tag-badge {
  background: #ebeefd;
  color: #182878;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin: 0 4px 8px 0;
}

/* ===== SUCCESS STORIES ===== */
.stories-section {
  background: #fff;
  padding: 48px 0 80px;
}
.story-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  padding: 16px;
  transition: box-shadow 0.3s;
}
.story-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.story-img-wrapper {
  position: relative;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
}
.story-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-img-wrapper .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}
.story-img-wrapper:hover .play-btn {
  transform: scale(1.1);
}
.play-btn i {
  color: #3a58ef;
  font-size: 20px;
  margin-left: 2px;
}

/* ===== CAREER GLOBAL CTA ===== */
.cta-section {
  background: #021c56;
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.cta-section .wave-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(151, 192, 255, 0.6), transparent);
  opacity: 0.1;
}

/* ===== FAQ ===== */
.faq-section {
  background: #fff;
  padding: 64px 0 80px;
}
.faq-item {
  border-bottom: 1px solid #d9d9d9;
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
}
.faq-btn .faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-btn .faq-icon {
  transform: rotate(45deg);
}
.faq-question {
  color: #2a3343;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .faq-question {
    font-size: 20px;
  }
}
.faq-answer {
  color: #2a3343;
  font-size: 16px;
  line-height: 28px;
  margin-top: 16px;
  display: none;
}
@media (min-width: 768px) {
  .faq-answer {
    font-size: 18px;
  }
}
.faq-item.active .faq-answer {
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #26244a;
  color: #fff;
  padding: 48px 0 0;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 64px 0 0;
  }
}
.footer-brand span {
  color: #3a58ef;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 20px;
  transition: color 0.2s;
}
.site-footer a:hover {
  color: #fff;
}
.footer-section-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-section-title a {
  color: #fff;
  font-size: 18px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.app-btn {
  background: #090914;
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  color: #fff;
  width: 180px;
}
.app-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}
.app-btn small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}
.app-btn .app-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding: 32px 0;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.footer-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.3);
  display: inline-block;
  margin: 0 12px;
  vertical-align: middle;
}

/* ===== DOMAINS SECTION ===== */
.domains-section {
  background: #ebeefd;
}

/* ===== CAREER GROWTH SECTION ===== */
.career-growth-section {
  background: #fff;
  overflow: hidden;
}
