/* ===================== NavHeader ===================== */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  height: 80px;
  border-bottom: 1px solid #f0f0f0;
}

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

.logo-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  position: relative;
}

.nav-label {
  font-size: 16px;
  color: #59595b;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-item.active .nav-label {
  color: #0d6eff;
}

.nav-underline {
  width: 48px;
  height: 2px;
  background: transparent;
  border-radius: 1px;
  transition: background 0.2s;
}

.nav-item.active .nav-underline {
  background: #0d6eff;
}

.nav-item:hover .nav-label {
  color: #0d6eff;
}

.mobile-menu-btn {
  display: none;
  width: 32px;
  height: 32px;
  background: transparent;
  position: relative;
  z-index: 110;
}

.mobile-menu-btn span,
.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 4px;
  transition: all 0.3s;
}

.mobile-menu-btn span {
  top: 15px;
}

.mobile-menu-btn span::before {
  content: '';
  top: -7px;
}

.mobile-menu-btn span::after {
  content: '';
  top: 7px;
}

.mobile-menu-btn span.open {
  background: transparent;
}

.mobile-menu-btn span.open::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-btn span.open::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-header {
    height: 60px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .logo-img {
    height: 38px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 32px;
  }
}

/* ===================== AnnouncementBar ===================== */
.announcement-bar {
  background: #2b2b97;
  width: 100%;
}

.announcement-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement-text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.announcement-btn {
  flex-shrink: 0;
  background: #ff090d;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 28px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.announcement-btn:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .announcement-inner {
    padding: 14px 20px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .announcement-text {
    font-size: 13px;
  }

  .announcement-btn {
    font-size: 14px;
    padding: 10px 28px;
  }
}

/* ===================== SiteFooter ===================== */
.site-footer {
  background: #1c1e24;
  width: 100%;
  margin-top: 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 40px;
  text-align: center;
}

.footer-text {
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .footer-inner {
    padding: 20px 20px;
  }

  .footer-text {
    font-size: 12px;
  }
}

/* ===================== Operations ===================== */
.operations-page {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.ops-banner {
  width: 100%;
  line-height: 0;
}

.ops-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 32px 32px;
}

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

.ops-video-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.ops-video-text {
  flex: 1;
  min-width: 0;
}

.star-deco {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.video-desc,
.showcase-desc {
  font-size: 22px;
  font-weight: 600;
  color: #131f23;
  line-height: 1.8;
  letter-spacing: 0.2px;
}

.ops-video-card {
  flex-shrink: 0;
  width: 480px;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.ops-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.ops-video.visible {
  display: block;
}

.video-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.video-cover.hidden {
  opacity: 0;
  pointer-events: none;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
}

.ops-video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

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

.ops-showcase-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.showcase-phones {
  flex-shrink: 0;
  width: 500px;
  height: 500px;
  position: relative;
}

.phone-main {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-icon {
  position: absolute;
  animation: breathe 3.5s ease-in-out infinite;
}

.icon-1 {
  width: 56px;
  height: 56px;
  left: -10px;
  bottom: 100px;
  animation-delay: 0s;
}

.icon-2 {
  width: 76px;
  height: 80px;
  right: -20px;
  top: 100px;
  animation-delay: 1.2s;
}

.icon-3 {
  width: 68px;
  height: 68px;
  right: -30px;
  bottom: 120px;
  animation-delay: 2.4s;
}

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

.showcase-text {
  flex: 1;
  min-width: 0;
}

.ops-about-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ops-about-bg {
  position: absolute;
  inset: 0;
}

.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gradient {
  display: none;
}

.ops-about-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 80px 40px;
}

.about-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.about-title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.about-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #4efdff;
  border-radius: 2px;
  flex-shrink: 0;
}

.about-desc {
  font-size: 20px;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.3px;
}

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

.ops-partners-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.partners-title {
  font-size: 52px;
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 24px;
}

.partners-desc {
  font-size: 20px;
  color: #0e191e;
  line-height: 2;
  max-width: 900px;
  margin: 0 auto 48px;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.partner-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.partner-card.large {
  grid-column: 1 / -1;
  height: 400px;
}

.partner-card:not(.large) {
  height: 320px;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(13, 110, 255, 0.35);
}

.partner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.partner-card:hover::after {
  transform: translateX(100%);
}

.card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.partner-card:hover .card-bg-img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.card-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 110, 255, 0.3) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.35s;
}

.partner-card:hover .card-glow {
  opacity: 1.5;
}

.card-bo2 {
  position: absolute;
  bottom: 80px;
  left: 68px;
  font-size: 72px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.35s ease;
  letter-spacing: 8px;
}

.partner-card:not(.large) .card-bo2 {
  font-size: 56px;
}

.partner-card:hover .card-bo2 {
  transform: translateX(6px);
}

.card-content {
  position: relative;
  z-index: 3;
  padding: 48px;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-bo1 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s ease;
}

.partner-card:hover .card-bo1 {
  transform: translateX(4px);
}

.card-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.card-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 500px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .ops-video-inner {
    flex-direction: column;
    gap: 40px;
  }

  .ops-video-card {
    width: 100%;
    max-width: 560px;
    height: 300px;
  }

  .ops-showcase-inner {
    flex-direction: column;
    gap: 40px;
  }

  .showcase-phones {
    width: 400px;
    height: 400px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-card.large {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .ops-banner-img {
    border-radius: 0 0 20px 20px;
  }

  .ops-video-section {
    padding: 40px 0;
  }

  .ops-video-inner,
  .ops-showcase-inner,
  .ops-partners-inner,
  .ops-about-inner {
    padding: 0 20px;
  }

  .ops-about-inner {
    padding: 50px 20px;
  }

  .video-desc,
  .showcase-desc {
    font-size: 18px;
  }

  .ops-video-card {
    max-width: 100%;
    height: 220px;
  }

  .showcase-phones {
    width: 300px;
    height: 300px;
  }

  .icon-1 { width: 40px; height: 40px; }
  .icon-2 { width: 56px; height: 60px; }
  .icon-3 { width: 50px; height: 50px; }

  .ops-showcase-section {
    padding: 0 0 40px;
  }

  .ops-about-section {
    min-height: 360px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-desc {
    font-size: 16px;
  }

  .ops-partners-section {
    padding: 40px 0;
  }

  .partners-title {
    font-size: 32px;
  }

  .partners-desc {
    font-size: 16px;
  }

  .card-bo2 {
    font-size: 40px;
  }

  .partner-card:not(.large) .card-bo2 {
    font-size: 32px;
  }

  .card-content {
    padding: 24px;
  }

  .card-bo1 {
    font-size: 24px;
  }

  .card-desc {
    font-size: 14px;
  }

  .partner-card.large {
    height: 280px;
  }

  .partner-card:not(.large) {
    height: 260px;
  }
}

/* ===================== ContactUs ===================== */
.contact-page {
  margin: 0;
  padding: 0;
}

.hero-section {
  background: #eef3fd;
  width: 100%;
  overflow: hidden;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 420px;
  position: relative;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: #262626;
  flex-shrink: 0;
}

.hero-image {
  flex-shrink: 0;
  max-width: 55%;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.form-section {
  width: 100%;
  padding: 60px 0 80px;
}

.form-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
}

.form-area {
  flex: 1;
  min-width: 0;
}

.connect-area {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #272727;
  margin-bottom: 8px;
}

.required {
  color: red;
  margin-left: 2px;
}

.form-input,
.form-select {
  width: 100%;
  height: 56px;
  background: #f7f7f8;
  border: 1px solid #ecedf0;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 16px;
  color: #272727;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus {
  border-color: #0d6eff;
}

.input-error {
  border-color: #ef4444 !important;
}

.select-wrapper {
  position: relative;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  width: 100%;
  min-height: 160px;
  background: #f7f7f8;
  border: 1px solid #ecedf0;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  color: #272727;
  resize: vertical;
  transition: border-color 0.2s;
}

.form-textarea:focus {
  border-color: #0d6eff;
}

.form-textarea::placeholder {
  color: #8d8d8d;
}

.submit-btn {
  width: 100%;
  height: 56px;
  background: #0d6eff;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  border-radius: 8px;
  margin-top: 12px;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.9;
}

.btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.submit-message {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: #ef4444;
}

.submit-message.success {
  color: #22c55e;
}

.connect-text {
  margin-bottom: 16px;
}

.connect-illustration {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 16px;
}

.connect-subtitle {
  font-size: 15px;
  color: #8d8d8d;
  font-weight: 500;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.contact-card.clickable {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.contact-card.clickable:hover {
  background: #dae9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 255, 0.12);
}

.card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  object-fit: contain;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #5e5e5e;
}

.card-detail {
  font-size: 14px;
  color: #8d8d8d;
  font-weight: 500;
  word-break: break-all;
}

.join-section {
  width: 100%;
  padding: 0 0 60px;
}

.join-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.join-card {
  background: #f7f7f8;
  border-radius: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}

.join-content {
  flex: 1;
  padding: 50px 60px;
  z-index: 1;
}

.join-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.join-logo-icon {
  width: 60px;
  height: 60px;
}

.join-logo-text {
  font-size: 32px;
  font-weight: 700;
  color: #0d6eff;
}

.join-title {
  font-size: 42px;
  font-weight: 700;
  color: #262626;
  margin-bottom: 16px;
}

.join-desc {
  font-size: 14px;
  color: #8d8d8d;
  line-height: 1.8;
}

.join-desc p {
  margin-bottom: 2px;
}

.email-link {
  color: #0d6eff;
  font-weight: 500;
}

.join-image {
  flex: 0 0 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-right: 20px;
}

.join-image img {
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(13, 110, 255, 0.15));
  transition: transform 0.4s ease;
}

.join-image img:hover {
  transform: scale(1.03);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.01);
  }
}

@media (max-width: 1100px) {
  .form-section-inner {
    flex-direction: column;
  }

  .connect-area {
    flex: none;
    width: 100%;
  }

  .connect-illustration {
    max-width: 300px;
  }

  .join-card {
    flex-direction: column;
    border-radius: 24px;
  }

  .join-content {
    padding: 40px 32px;
  }

  .join-image {
    flex: none;
    width: 100%;
    max-width: 320px;
    padding: 0 20px 20px;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 40px 20px;
    flex-direction: column;
    text-align: center;
    gap: 24px;
    min-height: auto;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-image {
    max-width: 80%;
  }

  .form-section {
    padding: 40px 0 60px;
  }

  .form-section-inner {
    padding: 0 20px;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .join-inner {
    padding: 0 20px;
  }

  .join-content {
    padding: 28px 24px;
  }

  .join-title {
    font-size: 32px;
  }

  .join-logo-text {
    font-size: 24px;
  }

  .join-logo-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .form-label {
    font-size: 15px;
  }

  .form-input,
  .form-select {
    height: 48px;
    font-size: 14px;
  }

  .form-textarea {
    min-height: 120px;
    font-size: 14px;
  }

  .submit-btn {
    height: 48px;
    font-size: 16px;
  }

  .card-title {
    font-size: 15px;
  }

  .card-detail {
    font-size: 12px;
  }

  .card-icon {
    width: 36px;
    height: 36px;
  }
}

/* ===================== Careers ===================== */
.careers-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 40px;
}

.banner-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

.banner-desc {
  font-size: 18px;
  color: #fff;
  line-height: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-desc p {
  margin: 0;
}

.careers-intro {
  width: 100%;
  padding: 60px 0 40px;
}

.intro-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.intro-title {
  font-size: 24px;
  font-weight: 500;
  color: #272727;
  margin-bottom: 16px;
}

.intro-desc {
  font-size: 18px;
  color: #272727;
  line-height: 2.2;
}

.intro-desc p {
  margin: 0;
}

.careers-jobs {
  width: 100%;
  padding: 0 0 60px;
}

.jobs-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.jobs-label {
  font-size: 20px;
  font-weight: 500;
  color: #272727;
  margin-bottom: 20px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-item {
  background: #f7f7f8;
  border: 1px solid #ecedf0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.job-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.job-item.expanded {
  border-color: #0d6eff;
  box-shadow: 0 2px 16px rgba(13, 110, 255, 0.1);
}

.job-header {
  display: flex;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.job-title {
  font-size: 20px;
  font-weight: 500;
  color: #272727;
  flex: 1;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #8d8d8d;
  flex-shrink: 0;
}

.job-divider {
  color: #ddd;
}

.job-arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.job-arrow.rotated {
  transform: rotate(180deg);
}

.job-detail {
  padding: 0 24px 24px;
}

.job-responsibilities {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.job-responsibilities li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: #272727;
  line-height: 2;
}

.job-responsibilities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: #0d6eff;
  border-radius: 50%;
}

.job-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d6eff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.job-contact-btn:hover {
  opacity: 0.9;
}

.jobs-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  color: #272727;
}

.link-contact {
  color: #007bff;
  text-decoration: underline;
}

.link-contact:hover {
  color: #0d6eff;
}

.slide-enter-active,
.slide-leave-active {
  transition: all 0.3s ease;
  overflow: hidden;
}

.slide-enter-from,
.slide-leave-to {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.slide-enter-to,
.slide-leave-from {
  opacity: 1;
  max-height: 600px;
}

@media (max-width: 768px) {
  .careers-banner {
    min-height: 280px;
  }

  .banner-content {
    padding: 40px 20px;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-desc {
    font-size: 14px;
    line-height: 1.8;
  }

  .intro-inner,
  .jobs-inner {
    padding: 0 20px;
  }

  .careers-intro {
    padding: 40px 0 24px;
  }

  .intro-title {
    font-size: 20px;
  }

  .intro-desc {
    font-size: 15px;
    line-height: 1.8;
  }

  .jobs-label {
    font-size: 17px;
  }

  .job-header {
    padding: 16px 16px;
    flex-wrap: wrap;
  }

  .job-title {
    font-size: 17px;
    flex-basis: calc(100% - 30px);
  }

  .job-meta {
    font-size: 12px;
    order: 3;
    width: 100%;
    margin-top: 4px;
  }

  .job-detail {
    padding: 0 16px 20px;
  }

  .job-responsibilities li {
    font-size: 14px;
    line-height: 1.8;
  }

  .job-contact-btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  .jobs-footer {
    font-size: 15px;
  }
}

/* ===================== AnnouncementBar ===================== */
.announcement-bar {
  background: #2b2b97;
  width: 100%;
}

.announcement-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement-text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.announcement-btn {
  flex-shrink: 0;
  background: #ff090d;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 28px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.announcement-btn:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .announcement-inner {
    padding: 14px 20px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .announcement-text {
    font-size: 13px;
  }

  .announcement-btn {
    font-size: 14px;
    padding: 10px 28px;
  }
}

/* ===================== Benefits ===================== */
.benefits-page {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
	margin-top: 700px;
}

.benefits-banner {
  width: 100%;
  line-height: 0;
}

.blue-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 80px;
}

.blue-bg {
  position: absolute;
  inset: 0;
  background: #0864f5;
  z-index: 0;
}

.blue-pattern {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  mix-blend-mode: color-burn;
  pointer-events: none;
  z-index: 1;
}

.blue-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px 0;
}

.trophy-wrap {
  display: inline-block;
  margin-bottom: 16px;
}

.trophy-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.shine-loop {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.shine-loop::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 40%;
  height: 160%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 35%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.15) 65%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shineSweep 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shineSweep {
  0% { left: -60%; opacity: 0; }
  15% { opacity: 1; }
  55% { left: 120%; opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 22px;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 32px;
}

.category-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-tag-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
}

.category-tag-img:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

.carousel-wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1200 / 350;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 8px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 28px;
  background: #fff;
}

.register-section {
  padding: 0 0 80px;
  margin-top: -40px;
  position: relative;
  z-index: 3;
  background: #0864f5;
}

.register-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.register-card {
  flex: 1;
  max-width: 400px;
  background: #fff;
  border-radius: 44px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 24px;
  margin-bottom: 24px;
}

.card-name {
  font-size: 32px;
  font-weight: 400;
  color: #73798b;
  margin-bottom: 12px;
}

.card-slogan {
  font-size: 22px;
  color: #959db1;
  margin-bottom: 24px;
}

.card-badge-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(187, 210, 255, 0.2);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 24px;
  min-height: 60px;
  width: 100%;
}

.card-badge {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.cert-img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.bt-register-btn {
  display: block;
  width: 100%;
  padding: 20px;
  background: #0d6eff;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.bt-register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 110, 255, 0.35);
  filter: brightness(1.05);
}

.bt-register-btn:active {
  transform: translateY(-1px) scale(0.98);
}

@media (max-width: 1024px) {
  .register-inner {
    flex-direction: column;
    align-items: center;
  }

  .register-card {
    max-width: 440px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .blue-content {
    padding: 40px 20px 0;
  }

  .trophy-img {
    width: 100px;
    height: 100px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .category-tag {
    padding: 8px 14px;
    font-size: 14px;
  }

  .carousel-track {
    border-radius: 12px;
  }

  .carousel-slide {
    border-radius: 12px;
  }

  .register-section {
    padding: 40px 0 60px;
  }

  .register-inner {
    padding: 0 20px;
    gap: 24px;
  }

  .register-card {
    padding: 28px;
    border-radius: 28px;
  }

  .card-name {
    font-size: 26px;
  }

  .card-slogan {
    font-size: 18px;
  }

  .bt-register-btn {
    font-size: 18px;
    padding: 16px;
  }
}

/* ===================== Follow Us (共用) ===================== */
.follow-section {
  width: 100%;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.follow-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.follow-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 80px 40px;
}

.follow-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-link {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .follow-inner {
    flex-direction: column;
    gap: 24px;
    padding: 50px 20px;
  }

  .follow-title {
    font-size: 36px;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }
}
