@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 80px 0;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -100px;
  /* Adjust centering */
  width: 600px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #2c53b3;
  z-index: 1001;
}

.mega-menu .menu-content {
  display: flex;
  padding: 20px;
}

.mega-menu .menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eee;
  padding-right: 20px;
}

.mega-menu .menu-links a {
  padding: 10px 15px;
  color: #555;
  border-radius: 4px;
  transition: all 0.2s;
  text-align: left;
}

.mega-menu .menu-links a:hover {
  background: #f0f7ff;
  color: #2c53b3;
  padding-left: 20px;
}

.mega-menu .menu-featured {
  width: 200px;
  padding-left: 20px;
}

.mega-menu .menu-featured .featured-image {
  width: 100%;
  height: 150px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.mega-menu .menu-featured .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu .menu-featured .featured-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.mega-menu {
  transform: none;
  transition: opacity 0.3s, visibility 0.3s;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all .3s;
  background: #1e3c8a;
}

.header .container {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header.scrolled {
  background: #1e3c8a !important;
  box-shadow: none !important;
}

.header.scrolled .nav .nav-link {
  color: #fff !important;
}

.header.scrolled .header-right {
  color: #fff !important;
}

.header.scrolled .search-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: transparent !important;
}

.header .logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
}

.header .logo .logo-main {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header .logo .logo-main img {
  height: 48px;
  object-fit: contain;
  display: block;
}

.header .logo .logo-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  font-weight: 500;
  margin-left: 2px;
  text-transform: uppercase;
}

.header .nav {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 100%;
}

.header .nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 10px 0;
  opacity: .9;
  display: block;
}

.header .nav .nav-link:hover, .header .nav .nav-link.active {
  opacity: 1;
}

.header .nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .3s;
}

.header .nav .nav-link:hover::before, .header .nav .nav-link.active::before {
  width: 30px;
}

.header .nav .nav-link.nav-talent {
  display: none;
}

.header .nav .dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.header .nav .dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header .nav .dropdown .dropdown-toggle::after {
  content: '';
  width: 12px;
  height: 12px;
  background: url("../images/down.png") no-repeat center/contain;
  border: none;
}

.header .nav .dropdown:hover .mega-menu,
.header .nav .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.header .nav .dropdown:hover .dropdown-toggle::after {
  background-image: url("../images/up.png");
}

.header .nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #144290;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 1001;
}

.header .nav .dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #555;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #f5f5f5;
  white-space: nowrap;
}

.header .nav .dropdown-menu a:last-child {
  border-bottom: none;
}

.header .nav .dropdown-menu a:hover {
  background: #f0f7ff;
  color: #144290;
}

.header .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.header .header-right .search-icon {
  width: 52px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .4s ease;
}

.header .header-right .search-icon img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s ease;
}

.header .header-right .search-icon input {
  position: absolute;
  left: 15px;
  top: 0;
  width: 0;
  height: 100%;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 14px;
  opacity: 0;
  transition: all .4s ease;
  outline: none;
}

.header .header-right .search-icon:hover, .header .header-right .search-icon:focus-within {
  width: 180px;
  justify-content: flex-start;
  padding-left: 40px;
}

.header .header-right .search-icon:hover img, .header .header-right .search-icon:focus-within img {
  left: 18px;
  transform: translate(0, -50%);
}

.header .header-right .search-icon:hover input, .header .header-right .search-icon:focus-within input {
  width: 140px;
  opacity: 1;
}

.header .header-right .talent-btn {
  display: inline-block;
  width: 104px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: #fff;
  color: #144290;
  border-radius: 18px;
  font-size: 16px;
}

.header .header-right .talent-btn:hover {
  opacity: .95;
}

.header .mobile-menu-btn {
  display: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.header .mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: all .3s;
  border-radius: 2px;
}

.header.menu-open {
  background: #fff;
}

.header.menu-open .logo .logo-main {
  color: #144290;
}

.header.menu-open .nav .nav-link {
  color: #333;
}

.header.menu-open .header-right {
  color: #333;
}

.header.menu-open .mobile-menu-btn span {
  background: #333;
}

.talent-hero {
  height: 430px;
  background: url(../images/laowu.png) no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

.talent-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.talent-hero .hero-content {
  text-align: center;
}

.talent-hero .hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #144290;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.talent-hero .hero-content .subline-en {
  font-size: 22px;
  color: #144290;
  letter-spacing: 4px;
  margin-bottom: 30px;
  font-weight: 600;
}

.talent-hero .hero-content .breadcrumb {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 20px;
  color: #144290;
}

.talent-hero .hero-content .breadcrumb a {
  color: #144290;
  margin: 0 5px;
}

.talent-hero .hero-content .breadcrumb a:hover {
  text-decoration: underline;
}

.talent-hero .hero-content .breadcrumb a.active {
  pointer-events: none;
}

.talent-hero .hero-content .breadcrumb span {
  margin-left: 5px;
  color: #144290;
}

.subtitle-badge {
  display: inline-block;
  background: #ffc107;
  color: #144290;
  font-size: 18px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
}

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

.section-header h2 {
  font-size: 48px;
  font-weight: 900;
  color: #111;
  margin: 0 0 10px;
  letter-spacing: 1px;
}

.section-header .section-desc {
  color: #7C7C7C;
  font-size: 16px;
  margin-top: 15px;
}

.talent-overview {
  background: #fff;
}

.talent-overview .overview-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.talent-overview .overview-inner h2 {
  font-size: 48px;
  font-weight: 900;
  color: #111;
  margin: 0 0 14px;
}

.talent-overview .overview-inner .subtitle-badge {
  margin-bottom: 22px;
}

.talent-overview .overview-inner .desc {
  color: #7C7C7C;
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}

.talent-types {
  background: #fff;
}

.talent-types .desc {
  color: #7C7C7C;
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
  margin-top: 15px;
}

.talent-types .types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.talent-types .type-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
  display: flex;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid rgba(20, 66, 144, 0.08);
  min-height: 164px;
  padding-left: 0;
}

.talent-types .type-card .type-thumb {
  width: 200px;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.talent-types .type-card .type-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px 0 0 14px;
}

.talent-types .type-card .type-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.talent-types .type-card .type-body h3 {
  margin: 4px 0 12px;
  font-size: 20px;
  font-weight: 900;
  color: #111;
  text-align: left;
  padding-left: 25px;
}

.talent-types .type-card .type-body .type-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

.talent-types .type-card .type-body .type-points li img {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-top: 3px;
  flex-shrink: 0;
}

.talent-types .type-card .type-body .type-points li .label {
  font-weight: 900;
  color: #111;
  white-space: nowrap;
  flex-shrink: 0;
}

.talent-types .type-card .type-body .type-points li .text {
  color: #666;
  flex: 1;
  min-width: 0;
}

.talent-types .type-card .type-body .type-points li:last-child {
  margin-bottom: 0;
}

.talent-support {
  background: #fff;
}

.talent-support .support-content {
  display: flex;
  gap: 50px;
  align-items: stretch;
}

.talent-support .section-header-left {
  margin-bottom: 22px;
}

.talent-support .section-header-left .section-tag {
  font-size: 22px;
  color: #144290;
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  padding-left: 40px;
  text-transform: uppercase;
}

.talent-support .section-header-left .section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #144290;
  transform: translateY(-50%);
}

.talent-support .section-header-left h2 {
  font-size: 48px;
  font-weight: 900;
  margin: 10px 0 0;
  color: #111;
}

.talent-support .section-header-left .desc {
  margin: 10px 0 0;
  font-size: 16px;
  color: #7C7C7C;
  line-height: 1.8;
}

.talent-support .support-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.talent-support .support-right {
  flex: 1;
  display: flex;
}

.talent-support .support-list {
  border-radius: 18px;
  padding: 18px;
  padding-top: 0;
}

.talent-support .support-card {
  background: #F0F4FD;
  border-radius: 14px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.talent-support .support-card:last-child {
  margin-bottom: 0;
}

.talent-support .support-card .card-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.talent-support .support-card .card-icon img {
  width: 54px;
  height: 54px;
  display: block;
}

.talent-support .support-card .card-info {
  flex: 1;
}

.talent-support .support-card .card-info h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
  color: #144290;
}

.talent-support .support-card .card-info .index {
  margin-right: 6px;
  color: #144290;
}

.talent-support .support-card .card-info p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

.talent-support .support-image {
  flex: 1;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
}

.talent-support .support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.talent-value {
  width: 100%;
  background: url(../images/newbj.png) no-repeat center/cover;
  background-size: cover;
  min-height: 779px;
}

.talent-value .value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 100px;
}

.talent-value .value-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(20, 66, 144, 0.08);
}

.talent-value .value-card .icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.talent-value .value-card .icon img {
  width: 54px;
  height: 54px;
  display: block;
}

.talent-value .value-card h4 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
  color: #333;
}

.talent-value .value-card p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.talent-cases {
  background: #F3F7FF;
  color: #333;
}

.talent-cases .case-card-lg {
  position: relative;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 360px 1fr;
  column-gap: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1040px;
  min-height: 470px;
  overflow: hidden;
}

.talent-cases .quote {
  display: none;
  position: absolute;
  font-size: 120px;
  line-height: 1;
  font-weight: 900;
  color: #ffc107;
  pointer-events: none;
  user-select: none;
}

.talent-cases .quote-tl {
  left: -26px;
  top: -54px;
}

.talent-cases .quote-br {
  right: -22px;
  bottom: -66px;
}

.talent-cases .case-left {
  padding: 78px 34px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding-left: 70px;
}

.talent-cases .case-left .company-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  color: #144290;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.talent-cases .case-left h3 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 900;
  color: #144290;
  line-height: 1.35;
}

.talent-cases .case-left .company-desc {
  margin: 0 0 22px;
  font-size: 14px;
  color: #144290;
  line-height: 1.8;
}

.talent-cases .case-left .company-loc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #64748B;
}

.talent-cases .case-left .company-loc img {
  width: 18px;
  height: 18px;
  display: block;
}

.talent-cases .case-right {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.talent-cases .case-right .case-detail-item {
  margin-bottom: 22px;
}

.talent-cases .case-right .case-detail-item h4 {
  font-size: 16px;
  font-weight: 900;
  color: #1D2A44;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
}

.talent-cases .case-right .case-detail-item h4 .dot {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  margin-right: 10px;
  flex-shrink: 0;
}

.talent-cases .case-right .case-detail-item p {
  font-size: 14px;
  color: #334155;
  line-height: 1.8;
  margin: 0 0 10px;
}

.talent-cases .case-right .case-detail-item p:last-child {
  margin-bottom: 0;
}

.talent-cases .case-right .case-detail-item strong {
  color: #1D2A44;
  font-weight: 900;
}

.talent-cases .case-right .case-detail-item.challenge h4 .dot {
  background: url(../images/tiaozhan1.png) no-repeat;
  background-size: cover;
}

.talent-cases .case-right .case-detail-item.solution h4 {
  color: #144290;
}

.talent-cases .case-right .case-detail-item.solution h4 .dot {
  background: url(../images/jiejuefangan.png) no-repeat;
  background-size: cover;
}

.talent-cases .case-right .case-detail-item.solution p {
  position: relative;
  padding-left: 16px;
}

.talent-cases .case-right .case-detail-item.solution p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(29, 42, 68, 0.65);
}

.talent-cases .case-outcome {
  margin-top: 10px;
  background: rgba(43, 182, 115, 0.12);
  border-radius: 14px;
  padding: 18px 18px;
  border: 1px solid rgba(43, 182, 115, 0.22);
  display: flex;
  align-items: center;
  gap: 14px;
}

.talent-cases .outcome-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(43, 182, 115, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2BB673;
  font-weight: 900;
  font-size: 22px;
  flex-shrink: 0;
}

.talent-cases .outcome-title {
  font-size: 16px;
  font-weight: 900;
  color: #149A59;
  margin-bottom: 6px;
}

.talent-cases .outcome-desc {
  font-size: 13px;
  color: #2F6B4A;
  line-height: 1.7;
}

@media (min-width: 993px) {
  .talent-cases .case-card-lg {
    background: #F3F7FF url(../images/case.png) no-repeat left top;
    background-size: 100% 100%;
    box-shadow: none;
    overflow: visible;
  }
}

.contact-section-v2 {
  background: #F3F7FF;
  padding-bottom: 0;
}

.contact-card-v2 {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: 50px;
  margin-bottom: 100px;
  height: 630px;
  background: #144290;
  padding-left: 80px;
}

.contact-left {
  padding-top: 60px;
  width: 40%;
  background: #144290;
  color: #fff;
  position: relative;
  padding-right: 60px;
}

.contact-left .line-deco {
  width: 40px;
  height: 2px;
  background: #fff;
  margin-bottom: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.contact-left .subtitle-en {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  vertical-align: middle;
  margin-bottom: 15px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.contact-left h3 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}

.contact-left .contact-desc {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  line-height: 1.8;
}

.contact-left .contact-info-list .c-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 15px;
  color: #fff;
}

.contact-left .contact-info-list .c-item .icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.contact-left .contact-info-list .c-item img {
  width: 36px;
  height: 36px;
  border: none;
}

.contact-left .work-hours {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  display: inline-block;
  margin-top: 20px;
}

.contact-right {
  width: 60%;
  background: #DFEAFF;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.contact-right .simple-form {
  width: 100%;
}

.contact-right .simple-form label {
  display: block;
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-right .simple-form input,
.contact-right .simple-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  transition: all .2s;
  background: rgba(255, 255, 255, 0.9);
}

.contact-right .simple-form input:focus,
.contact-right .simple-form textarea:focus {
  border-color: rgba(20, 66, 144, 0.45);
  box-shadow: 0 0 0 4px rgba(20, 66, 144, 0.12);
}

.contact-right .simple-form textarea {
  resize: none;
}

.contact-right .simple-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-right .simple-form .form-group {
  margin-bottom: 20px;
}

.contact-right .simple-form .form-group.half {
  width: 50%;
}

.contact-right .simple-form .form-submit-row {
  text-align: right;
  margin-top: 10px;
}

.contact-right .simple-form .btn-submit {
  width: 140px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #144290;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: all .25s;
}

.contact-right .simple-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(20, 66, 144, 0.25);
}

.footer {
  background-color: #1a2233;
  padding: 60px 0 40px;
  color: #fff;
  font-size: 14px;
  margin-top: 0;
}

.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer .footer-top .footer-logo {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.footer .footer-top .footer-nav {
  display: flex;
  gap: 40px;
}

.footer .footer-top .footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s;
}

.footer .footer-top .footer-nav a:hover, .footer .footer-top .footer-nav a.active {
  color: #fff;
}

.footer .footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  background: #144290;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #0e2d63;
  transform: translateY(-5px);
}

.wow {
  visibility: hidden;
  animation-play-state: paused;
}

.animated {
  visibility: visible;
  animation-fill-mode: both;
  animation-play-state: running;
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 0.9s;
}

.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 0.9s;
}

.fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 0.9s;
}

.clipUp {
  animation-name: clipUp;
  animation-duration: 0.9s;
}

.zoomInUp {
  animation-name: zoomInUp;
  animation-duration: 0.9s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-60px, 0, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(60px, 0, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes clipUp {
  0% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.96, 0.96, 0.96) translate3d(0, 26px, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@media (max-width: 992px) {
  .header {
    background: #1e3c8a;
    height: 70px;
    position: relative;
  }
  .header .container {
    height: 70px;
  }
  .header.menu-open {
    background: #1e3c8a;
  }
  .header.menu-open .logo .logo-main {
    color: #fff;
  }
  .header.menu-open .mobile-menu-btn span {
    background: #fff !important;
  }
  .header .logo {
    margin-top: 0;
    max-width: calc(100vw - 70px);
  }
  .header .logo .logo-main {
    font-size: 20px;
    padding: 4px 10px;
    max-width: calc(100vw - 90px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .header .logo .logo-main img {
    height: 48px;
  }
  .header .logo .logo-sub {
    font-size: 9px;
  }
  .header .nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px;
    gap: 0;
    height: auto;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
    border-top: 1px solid #eee;
  }
  .header .nav.open {
    display: flex;
  }
  .header.scrolled .nav .nav-link {
    color: #333 !important;
  }
  .header .nav .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid #f9f9f9;
    width: 100%;
    color: #333 !important;
    font-size: 15px;
    text-align: left;
    padding-left: 10px;
  }
  .header .nav .nav-link::before {
    display: none;
  }
  .header .nav .nav-link:hover,
  .header .nav .nav-link.active {
    color: #144290 !important;
  }
  .header .nav .nav-link.nav-talent {
    display: block;
  }
  .header .nav .dropdown {
    display: block;
    width: 100%;
    height: auto;
    align-items: stretch;
  }
  .header .nav .dropdown .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
  }
  .header .nav .dropdown .dropdown-toggle::after {
    filter: invert(1);
  }
  .header .nav .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    border-top: none;
    background: #f9f9f9;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transform: none;
  }
  .header .nav .dropdown-menu a {
    display: block;
    text-align: left;
    padding: 12px 20px 12px 30px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }
  .header .nav .dropdown-menu a:last-child {
    border-bottom: none;
  }
  .header .nav .dropdown.open .dropdown-menu {
    display: block;
  }
  .header .nav .mega-menu {
    position: static;
    left: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-top: none;
    background: #f9f9f9;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transform: none;
  }
  .header .nav .mega-menu .menu-content {
    flex-direction: column;
    padding: 0;
  }
  .header .nav .mega-menu .menu-links {
    border: none;
    padding: 0;
  }
  .header .nav .mega-menu .menu-links a {
    text-align: left;
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }
  .header .nav .mega-menu .menu-links a:last-child {
    border-bottom: none;
  }
  .header .nav .mega-menu .menu-featured {
    display: none;
  }
  .header .nav .dropdown.open .mega-menu {
    display: block;
  }
  .header .header-right {
    display: none;
  }
  .header .mobile-menu-btn {
    display: flex !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    width: 30px;
    height: 21px;
    background: transparent;
    padding: 0;
  }
  .header .mobile-menu-btn span {
    background: #fff !important;
  }
  .talent-hero {
    margin-top: 0;
    height: calc(350px + 70px);
    padding-top: 0;
  }
  .talent-hero .hero-content h1 {
    font-size: 32px;
  }
  .talent-hero .hero-content .subline-en {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .talent-types .types-grid {
    grid-template-columns: 1fr;
  }
  .talent-types .type-card .type-thumb {
    width: 160px;
    height: 112px;
  }
  .talent-support .support-content {
    flex-direction: column;
  }
  .talent-support .support-right {
    width: 100%;
  }
  .talent-value .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .talent-cases .case-card-lg {
    display: block;
    padding: 44px 28px 40px;
    min-height: 0;
  }
  .talent-cases .case-card-lg::after,
  .talent-cases .quote {
    display: none;
  }
  .talent-cases .case-left {
    border-right: none;
    border-bottom: 1px solid rgba(20, 66, 144, 0.12);
    padding: 0 0 28px;
  }
  .talent-cases .case-right {
    padding: 28px 0 0;
  }
  .contact-card-v2 {
    flex-direction: column;
    height: auto;
    border-radius: 20px;
    padding-left: 0;
    margin-bottom: 50px;
  }
  .contact-left,
  .contact-right {
    width: 100%;
    padding: 40px 30px;
  }
  .contact-right {
    border-radius: 0 0 20px 20px;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
  .talent-value {
    min-height: 0;
  }
  .talent-value .value-grid {
    margin-top: 40px;
  }
  .talent-value .value-grid {
    grid-template-columns: 1fr;
  }
  .talent-types .type-card {
    padding: 18px;
    gap: 14px;
    min-height: 0;
  }
  .talent-types .type-card .type-thumb {
    width: 128px;
    height: 92px;
    border-radius: 14px;
  }
  .talent-types .type-card .type-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .talent-types .type-card .type-body .type-points li {
    display: grid;
    grid-template-columns: 16px 72px 1fr;
    column-gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    margin-bottom: 8px;
  }
  .talent-types .type-card .type-body .type-points li img {
    margin-top: 2px;
  }
  .back-to-top {
    bottom: 22px;
    right: 18px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 22px;
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translate3d(0, 20px, 0);
      filter: blur(8px);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      filter: blur(0);
    }
  }
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translate3d(-20px, 0, 0);
      filter: blur(8px);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      filter: blur(0);
    }
  }
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translate3d(20px, 0, 0);
      filter: blur(8px);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      filter: blur(0);
    }
  }
  @keyframes zoomInUp {
    0% {
      opacity: 0;
      transform: scale3d(0.98, 0.98, 0.98) translate3d(0, 18px, 0);
      filter: blur(8px);
    }
    100% {
      opacity: 1;
      transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
      filter: blur(0);
    }
  }
}
