@charset "UTF-8";
#capability-hero {
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(13, 49, 146, 0.96), rgba(4, 27, 49, 0.98)), radial-gradient(circle at top right, rgba(236, 207, 74, 0.22), transparent 38%);
}
#capability-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
#capability-hero .hero-wrap {
  z-index: 2;
  position: relative;
  gap: 80px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  #capability-hero .hero-wrap {
    gap: 48px;
  }
}
@media screen and (max-width: 1024px) {
  #capability-hero .hero-wrap {
    display: grid;
    gap: 40px;
  }
}
@media screen and (max-width: 640px) {
  #capability-hero .hero-wrap {
    gap: 30px;
  }
}
#capability-hero .hero-content {
  flex: 0 0 52%;
  max-width: 52%;
}
@media screen and (max-width: 1024px) {
  #capability-hero .hero-content {
    max-width: 760px;
  }
}
#capability-hero .hero-highlight {
  gap: 18px;
  display: flex;
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  #capability-hero .hero-highlight {
    gap: 12px;
    display: grid;
    margin-bottom: 32px;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
}
@media screen and (max-width: 640px) {
  #capability-hero .hero-highlight {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 480px) {
  #capability-hero .hero-highlight {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}
#capability-hero .highlight-item {
  flex: 1;
  min-width: 0;
  padding: 26px 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  #capability-hero .highlight-item {
    padding: 20px 14px;
  }
}
@media screen and (max-width: 640px) {
  #capability-hero .highlight-item {
    padding: 18px 12px;
  }
}
#capability-hero .highlight-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}
@media screen and (max-width: 1024px) {
  #capability-hero .highlight-item:hover {
    transform: none;
  }
}
#capability-hero .highlight-item strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #capability-hero .highlight-item strong {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  #capability-hero .highlight-item strong {
    margin-bottom: 6px;
    font-size: 26px;
  }
}
#capability-hero .highlight-item span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  #capability-hero .highlight-item span {
    font-size: 12px;
    line-height: 1.45;
  }
}
#capability-hero .hero-action {
  gap: 16px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  #capability-hero .hero-action {
    display: grid;
    gap: 12px;
  }
}
#capability-hero .hero-btn,
#capability-hero .hero-btn-outline {
  height: 58px;
  min-width: 220px;
  border-radius: 12px;
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  #capability-hero .hero-btn,
  #capability-hero .hero-btn-outline {
    width: 100%;
    height: 50px;
    min-width: 0;
  }
}
#capability-hero .hero-btn {
  color: #374ea2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background-color: #ffd309;
}
#capability-hero .hero-btn span {
  font-weight: 700;
}
#capability-hero .hero-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  background: #fa0103;
}
@media screen and (max-width: 1024px) {
  #capability-hero .hero-btn:hover {
    transform: none;
  }
}
#capability-hero .hero-btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
#capability-hero .hero-btn-outline:hover {
  background: #fff;
  color: #374ea2;
  border-color: #fff;
  transform: translateY(-3px);
}
@media screen and (max-width: 1024px) {
  #capability-hero .hero-btn-outline:hover {
    transform: none;
  }
}
#capability-hero .hero-media {
  position: relative;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  #capability-hero .hero-media {
    max-width: 760px;
  }
}
#capability-hero .hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}
#capability-hero .hero-image img {
  width: 100%;
  display: block;
  aspect-ratio: 800/600;
  object-fit: cover;
}
@media screen and (max-width: 640px) {
  #capability-hero .hero-image img {
    aspect-ratio: 4/3;
  }
}
#capability-hero .hero-card {
  position: absolute;
  bottom: 35px;
  left: -35px;
  width: 280px;
  padding: 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 768px) {
  #capability-hero .hero-card {
    left: 24px;
    bottom: 24px;
    width: 250px;
    padding: 24px;
  }
}
@media screen and (max-width: 640px) {
  #capability-hero .hero-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -34px 16px 0;
    padding: 20px;
  }
}
#capability-hero .hero-card strong {
  display: block;
  margin-bottom: 10px;
  color: #da2128;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #capability-hero .hero-card strong {
    font-size: 40px;
  }
}
@media screen and (max-width: 640px) {
  #capability-hero .hero-card strong {
    font-size: 34px;
  }
}
#capability-hero .hero-card span {
  display: block;
  color: #515152;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}
@media screen and (max-width: 640px) {
  #capability-hero .hero-card span {
    font-size: 14px;
    line-height: 1.55;
  }
}

#capability-cta {
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  #capability-cta {
    padding: 90px 0;
  }
}
@media screen and (max-width: 640px) {
  #capability-cta {
    padding: 64px 0;
  }
}
#capability-cta .cta-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 70px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #374ea2 0%, #0d3192 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1280px) {
  #capability-cta .cta-wrap {
    gap: 40px;
    padding: 56px;
  }
}
@media screen and (max-width: 1024px) {
  #capability-cta .cta-wrap {
    flex-direction: column;
    align-items: stretch;
  }
}
@media screen and (max-width: 768px) {
  #capability-cta .cta-wrap {
    padding: 44px 34px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 640px) {
  #capability-cta .cta-wrap {
    gap: 30px;
    padding: 32px 20px;
    border-radius: 16px;
  }
}
#capability-cta .cta-wrap::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
@media screen and (max-width: 640px) {
  #capability-cta .cta-wrap::before {
    top: -170px;
    right: -180px;
  }
}
#capability-cta .cta-wrap::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
@media screen and (max-width: 640px) {
  #capability-cta .cta-wrap::after {
    bottom: -150px;
    left: -160px;
  }
}
#capability-cta .cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
}
#capability-cta .cta-content h2 {
  margin-bottom: 24px;
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #capability-cta .cta-content h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 640px) {
  #capability-cta .cta-content h2 {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 1.28;
  }
}
#capability-cta .cta-desc {
  max-width: 760px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  #capability-cta .cta-desc {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 640px) {
  #capability-cta .cta-desc {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.65;
  }
}
#capability-cta .cta-action {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 640px) {
  #capability-cta .cta-action {
    display: grid;
    gap: 12px;
  }
}
#capability-cta .btn-primary {
  color: #fff;
  background: #da2128;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
#capability-cta .btn-primary:hover {
  background: #fa0103;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #capability-cta .btn-primary:hover {
    transform: none;
  }
}
#capability-cta .btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
}
#capability-cta .btn-outline:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}
@media screen and (max-width: 1024px) {
  #capability-cta .btn-outline:hover {
    transform: none;
  }
}
#capability-cta .btn-outline:hover span {
  color: #374ea2 !important;
}
#capability-cta .cta-info {
  position: relative;
  z-index: 2;
  flex: 0 0 360px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 1024px) {
  #capability-cta .cta-info {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #capability-cta .cta-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 640px) {
  #capability-cta .cta-info {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
#capability-cta .info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  #capability-cta .info-item {
    padding: 20px;
  }
}
@media screen and (max-width: 640px) {
  #capability-cta .info-item {
    gap: 14px;
    padding: 18px;
    border-radius: 12px;
  }
}
#capability-cta .info-item i.fa {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  #capability-cta .info-item i.fa {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
#capability-cta .info-content h3 {
  margin-bottom: 6px;
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  #capability-cta .info-content h3 {
    margin-bottom: 4px;
    font-size: 16px;
  }
}
#capability-cta .info-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (max-width: 640px) {
  #capability-cta .info-content p {
    line-height: 1.55;
  }
}

#capability-overview {
  background-color: #fff;
}
#capability-overview .overview-grid {
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1280px) {
  #capability-overview .overview-grid {
    gap: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #capability-overview .overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  #capability-overview .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 640px) {
  #capability-overview .overview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
#capability-overview .overview-card {
  position: relative;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  #capability-overview .overview-card {
    padding: 32px 22px;
  }
}
@media screen and (max-width: 640px) {
  #capability-overview .overview-card {
    padding: 28px 20px;
  }
}
#capability-overview .overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #374ea2;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}
#capability-overview .overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #capability-overview .overview-card:hover {
    transform: none;
  }
}
#capability-overview .overview-card:hover::before {
  transform: scaleX(1);
}
#capability-overview .overview-card:hover .card-number {
  color: #da2128;
}
#capability-overview .overview-card:hover h3 {
  color: #374ea2;
}
#capability-overview .overview-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(55, 78, 162, 0.04) 0%, rgba(55, 78, 162, 0.08) 100%);
}
#capability-overview .overview-card:nth-child(3) .card-number {
  color: #da2128;
}
#capability-overview .card-number {
  margin-bottom: 18px;
  color: #374ea2;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  #capability-overview .card-number {
    font-size: 42px;
  }
}
@media screen and (max-width: 640px) {
  #capability-overview .card-number {
    margin-bottom: 14px;
    font-size: 38px;
  }
}
@media screen and (max-width: 360px) {
  #capability-overview .card-number {
    font-size: 34px;
  }
}
#capability-overview h3 {
  margin-bottom: 14px;
  color: #222;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  #capability-overview h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
#capability-overview p:not([class]) {
  margin: 0;
  color: #515152;
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  #capability-overview p:not([class]) {
    font-size: 14px;
    line-height: 1.65;
  }
}

#production-process {
  background-color: #f8fafc;
}
#production-process .process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  #production-process .process-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #production-process .process-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  #production-process .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 640px) {
  #production-process .process-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
#production-process .process-timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: rgba(55, 78, 162, 0.15);
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  #production-process .process-timeline::before {
    display: none;
  }
}
#production-process .process-step {
  position: relative;
  z-index: 2;
  padding: 32px 22px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  #production-process .process-step {
    padding: 28px 20px;
  }
}
@media screen and (max-width: 640px) {
  #production-process .process-step {
    padding: 24px 20px;
    text-align: left;
  }
}
#production-process .process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #production-process .process-step:hover {
    transform: none;
  }
}
#production-process .process-step:hover .step-number {
  background: #da2128;
  color: #fff;
  border-color: #da2128;
}
#production-process .process-step:hover h3 {
  color: #374ea2;
}
#production-process .process-step h3 {
  margin-bottom: 14px;
  color: #222;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  #production-process .process-step h3 {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.4;
  }
}
#production-process .process-step p {
  margin: 0;
  color: #515152;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  #production-process .process-step p {
    line-height: 1.65;
  }
}
#production-process .step-number {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px solid rgba(55, 78, 162, 0.15);
  background: #fff;
  color: #374ea2;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 0 0 10px #f8fafc;
}
@media screen and (max-width: 1024px) {
  #production-process .step-number {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
    font-size: 22px;
    box-shadow: 0 0 0 8px #f8fafc;
  }
}
@media screen and (max-width: 640px) {
  #production-process .step-number {
    width: 58px;
    height: 58px;
    margin: 0 0 16px;
    font-size: 19px;
    box-shadow: 0 0 0 6px #f8fafc;
  }
}
#production-process .process-step:nth-child(4) {
  border-color: rgba(218, 33, 40, 0.2);
}
#production-process .process-step:nth-child(4) .step-number {
  background: rgba(218, 33, 40, 0.08);
  color: #da2128;
  border-color: rgba(218, 33, 40, 0.2);
}

#company-profile {
  background: linear-gradient(180deg, #fff 0%, rgba(55, 78, 162, 0.03) 100%);
}
#company-profile .profile-wrap {
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 60px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1280px) {
  #company-profile .profile-wrap {
    gap: 44px;
    padding: 46px;
  }
}
@media screen and (max-width: 1024px) {
  #company-profile .profile-wrap {
    display: grid;
    gap: 36px;
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  #company-profile .profile-wrap {
    gap: 28px;
    padding: 28px 20px;
  }
}
#company-profile .profile-preview {
  flex: 0 0 38%;
  max-width: 38%;
}
@media screen and (max-width: 1024px) {
  #company-profile .profile-preview {
    max-width: 420px;
  }
}
#company-profile .profile-image {
  position: relative;
  margin: 0;
}
#company-profile .profile-image::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border-radius: 20px;
  background: rgba(55, 78, 162, 0.08);
  z-index: 1;
}
@media screen and (max-width: 640px) {
  #company-profile .profile-image::before {
    inset: 14px -14px -14px 14px;
  }
}
#company-profile .profile-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: 0.5s ease;
}
#company-profile .profile-image:hover img {
  transform: translateY(-8px);
}
@media screen and (max-width: 1024px) {
  #company-profile .profile-image:hover img {
    transform: none;
  }
}
#company-profile .profile-content {
  flex: 1;
}
#company-profile .profile-content h3 {
  margin-bottom: 30px;
  color: #374ea2;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #company-profile .profile-content h3 {
    margin-bottom: 24px;
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  #company-profile .profile-content h3 {
    margin-bottom: 20px;
    font-size: 23px;
  }
}
#company-profile .profile-list {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #company-profile .profile-list {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 640px) {
  #company-profile .profile-list {
    margin-bottom: 26px;
  }
}
#company-profile .profile-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  color: #515152;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  #company-profile .profile-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.65;
  }
}
#company-profile .profile-list li:last-child {
  margin-bottom: 0;
}
#company-profile .profile-list li::before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 2px;
  color: #da2128;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 640px) {
  #company-profile .profile-list li::before {
    top: 1px;
    font-size: 14px;
  }
}
#company-profile .profile-action {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media screen and (max-width: 640px) {
  #company-profile .profile-action {
    display: grid;
    gap: 12px;
  }
}
#company-profile .btn-primary {
  color: #fff;
  background: #da2128;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
#company-profile .btn-primary:hover {
  background: #fa0103;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #company-profile .btn-primary:hover {
    transform: none;
  }
}
#company-profile .btn-outline {
  background: #fff;
  color: #374ea2;
  border: 2px solid #374ea2;
}
#company-profile .btn-outline:hover {
  background: #374ea2;
  color: #fff;
  transform: translateY(-3px);
}
@media screen and (max-width: 1024px) {
  #company-profile .btn-outline:hover {
    transform: none;
  }
}

#featured-projects {
  background: linear-gradient(180deg, rgba(55, 78, 162, 0.02) 0%, #fff 100%);
}
#featured-projects .project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  #featured-projects .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media screen and (max-width: 640px) {
  #featured-projects .project-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
#featured-projects .project-card {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
#featured-projects .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #featured-projects .project-card:hover {
    transform: none;
  }
}
#featured-projects .project-card:hover .project-image img {
  transform: scale(1.08);
}
@media screen and (max-width: 1024px) {
  #featured-projects .project-card:hover .project-image img {
    transform: none;
  }
}
#featured-projects .project-card:hover h3 {
  color: #374ea2;
}
#featured-projects .project-image {
  position: relative;
  margin: 0;
  overflow: hidden;
}
#featured-projects .project-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
#featured-projects .project-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}
@media screen and (max-width: 1024px) {
  #featured-projects .project-image img {
    height: 230px;
  }
}
@media screen and (max-width: 640px) {
  #featured-projects .project-image img {
    height: auto;
    aspect-ratio: 16/10;
  }
}
#featured-projects .project-content {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  #featured-projects .project-content {
    padding: 26px 24px;
  }
}
@media screen and (max-width: 640px) {
  #featured-projects .project-content {
    padding: 22px 20px;
  }
}
#featured-projects .project-content h3 {
  margin-bottom: 22px;
  color: #222;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  #featured-projects .project-content h3 {
    font-size: 23px;
  }
}
@media screen and (max-width: 640px) {
  #featured-projects .project-content h3 {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
#featured-projects .project-meta {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 640px) {
  #featured-projects .project-meta {
    margin-bottom: 22px;
  }
}
#featured-projects .project-meta li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #515152;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  #featured-projects .project-meta li {
    gap: 8px;
    padding: 10px 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 360px) {
  #featured-projects .project-meta li {
    display: grid;
  }
}
#featured-projects .project-meta li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#featured-projects .project-meta strong {
  color: #374ea2;
  font-weight: 700;
  white-space: nowrap;
}
#featured-projects .project-btn {
  height: 45px;
  padding-inline: 25px;
  max-width: 50%;
  min-width: 180px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
  background-color: #0d3192;
}
@media screen and (max-width: 768px) {
  #featured-projects .project-btn {
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  #featured-projects .project-btn {
    height: 44px;
    min-width: 0;
    padding-inline: 18px;
  }
}
#featured-projects .project-btn:hover {
  transform: translateY(-2px);
  background-color: #fa0103;
}
@media screen and (max-width: 1024px) {
  #featured-projects .project-btn:hover {
    transform: none;
  }
}
#featured-projects .project-card:nth-child(1),
#featured-projects .project-card:nth-child(6) {
  position: relative;
}
#featured-projects .project-card:nth-child(1)::after,
#featured-projects .project-card:nth-child(6)::after {
  content: "Dự án nổi bật";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  padding: 8px 14px;
  border-radius: 100rem;
  background: #da2128;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 640px) {
  #featured-projects .project-card:nth-child(1)::after,
  #featured-projects .project-card:nth-child(6)::after {
    top: 14px;
    right: 14px;
    padding: 7px 11px;
    font-size: 11px;
  }
}

.section-head {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 40px;
  max-width: calc(1300px - 20%);
}
@media screen and (max-width: 1024px) {
  .section-head {
    max-width: 860px;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 768px) {
  .section-head {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .section-head {
    margin-bottom: 20px;
  }
}

.section-label {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #da2128;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  flex-wrap: wrap;
  max-width: 100%;
  line-height: 1.45;
  text-align: center;
}
.section-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.section-label {
  gap: 10px;
}
@media screen and (max-width: 640px) {
  .section-label {
    gap: 8px;
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 12px;
  }
}
.section-label::before, .section-label::after {
  content: "";
  flex: 0 0 34px;
  width: 34px;
  height: 2px;
  background: #da2128;
}
@media screen and (max-width: 480px) {
  .section-label::before, .section-label::after {
    flex-basis: 22px;
    width: 22px;
  }
}
@media screen and (max-width: 360px) {
  .section-label::before, .section-label::after {
    display: none;
  }
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #374ea2;
  letter-spacing: -0.35px;
  font-family: "Be Vietnam Pro", sans-serif;
  overflow-wrap: break-word;
}
@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 30px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 640px) {
  .section-title {
    font-size: 25px;
    line-height: 1.32;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 360px) {
  .section-title {
    font-size: 23px;
  }
}

.section-desc {
  max-width: 820px;
  font-size: 16px;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #333;
  font-family: inherit;
  overflow-wrap: break-word;
}
@media screen and (max-width: 640px) {
  .section-desc {
    font-size: 15px;
    margin-top: 16px;
    line-height: 1.62;
  }
}

.hero-label {
  gap: 12px;
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
  text-align: left;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 100rem;
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
  color: #ffe42d;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
@media screen and (max-width: 640px) {
  .hero-label {
    gap: 8px;
    font-size: 12px;
    line-height: 1.35;
    padding: 7px 12px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 480px) {
  .hero-label {
    padding: 6px 10px;
  }
}
.hero-label::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #eccf4a;
}

.hero-title {
  color: #fff;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
  font-family: "Be Vietnam Pro", sans-serif;
  overflow-wrap: break-word;
}
@media screen and (max-width: 1280px) {
  .hero-title {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 640px) {
  .hero-title {
    margin-bottom: 18px;
    font-size: 31px;
    line-height: 1.22;
  }
}
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 29px;
  }
}
@media screen and (max-width: 360px) {
  .hero-title {
    font-size: 27px;
  }
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .hero-desc {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 640px) {
  .hero-desc {
    font-size: 15px;
    max-width: 100%;
    line-height: 1.65;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 360px) {
  .hero-desc {
    font-size: 14px;
  }
}

#quality-control {
  background-color: #fff;
}
#quality-control .quality-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  #quality-control .quality-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 640px) {
  #quality-control .quality-flow {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
}
#quality-control .quality-step {
  position: relative;
  padding: 40px 30px;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  #quality-control .quality-step {
    padding: 34px 24px;
  }
}
@media screen and (max-width: 640px) {
  #quality-control .quality-step {
    padding: 28px 20px;
    text-align: left;
  }
}
#quality-control .quality-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #da2128;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.3s ease;
}
#quality-control .quality-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #quality-control .quality-step:hover {
    transform: none;
  }
}
#quality-control .quality-step:hover::before {
  transform: scaleY(1);
}
#quality-control .quality-step:hover .step-icon {
  color: #fff !important;
  background-color: #374ea2;
}
#quality-control .quality-step:hover h3 {
  color: #374ea2;
}
#quality-control .quality-step h3 {
  margin-bottom: 14px;
  color: #222;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  #quality-control .quality-step h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
#quality-control .quality-step p {
  margin: 0;
  color: #515152;
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  #quality-control .quality-step p {
    font-size: 14px;
    line-height: 1.65;
  }
}
#quality-control .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 20px;
  font-size: 32px;
  transition: 0.3s ease;
  background: rgba(55, 78, 162, 0.08);
}
#quality-control .step-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  #quality-control .step-icon {
    width: 64px;
    height: 64px;
    margin-inline: 0;
    margin-bottom: 16px;
    font-size: 26px;
  }
}
#quality-control .step-icon i {
  display: block;
  line-height: 1;
}
#quality-control .quality-commitment {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #374ea2 0%, #0d3192 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
#quality-control .quality-commitment::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
@media screen and (max-width: 640px) {
  #quality-control .quality-commitment::before {
    top: -130px;
    right: -130px;
  }
}
#quality-control .quality-commitment::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
@media screen and (max-width: 640px) {
  #quality-control .quality-commitment::after {
    bottom: -110px;
    left: -110px;
  }
}
#quality-control .commitment-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #quality-control .commitment-content {
    padding: 44px 34px;
  }
}
@media screen and (max-width: 640px) {
  #quality-control .commitment-content {
    padding: 32px 22px;
    text-align: left;
  }
}
#quality-control .commitment-content h3 {
  margin-bottom: 20px;
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #quality-control .commitment-content h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  #quality-control .commitment-content h3 {
    margin-bottom: 14px;
    font-size: 23px;
  }
}
#quality-control .commitment-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.9;
}
@media screen and (max-width: 640px) {
  #quality-control .commitment-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}
#quality-control .quality-step:nth-child(1) .step-icon {
  color: #2e7d32;
}
#quality-control .quality-step:nth-child(2) .step-icon {
  color: #1565c0;
}
#quality-control .quality-step:nth-child(3) .step-icon {
  color: #ef6c00;
}
#quality-control .quality-step:nth-child(4) .step-icon {
  color: #da2128;
}

#quality-standard {
  background-color: #f8fafc;
}
#quality-standard .standard-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  #quality-standard .standard-grid {
    gap: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #quality-standard .standard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 768px) {
  #quality-standard .standard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 640px) {
  #quality-standard .standard-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
}
#quality-standard .standard-card {
  position: relative;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  #quality-standard .standard-card {
    padding: 32px 22px;
  }
}
@media screen and (max-width: 640px) {
  #quality-standard .standard-card {
    padding: 28px 20px;
  }
}
#quality-standard .standard-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #da2128;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}
#quality-standard .standard-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #quality-standard .standard-card:hover {
    transform: none;
  }
}
#quality-standard .standard-card:hover::before {
  transform: scaleX(1);
}
#quality-standard .standard-card:hover .standard-code {
  background: #374ea2;
  color: #fff;
}
#quality-standard .standard-card:hover h3 {
  color: #374ea2;
}
#quality-standard .standard-card h3 {
  margin-bottom: 14px;
  color: #222;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  #quality-standard .standard-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
#quality-standard .standard-card p {
  margin: 0;
  color: #515152;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  #quality-standard .standard-card p {
    line-height: 1.65;
  }
}
#quality-standard .standard-code {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(55, 78, 162, 0.08);
  color: #374ea2;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  #quality-standard .standard-code {
    width: 78px;
    height: 78px;
    margin-bottom: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  #quality-standard .standard-code {
    width: 68px;
    height: 68px;
    margin-bottom: 16px;
    font-size: 18px;
  }
}
#quality-standard .standard-note {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  text-align: center;
}
@media screen and (max-width: 768px) {
  #quality-standard .standard-note {
    padding: 44px 34px;
  }
}
@media screen and (max-width: 640px) {
  #quality-standard .standard-note {
    padding: 32px 22px;
    text-align: left;
  }
}
#quality-standard .standard-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #da2128;
}
@media screen and (max-width: 640px) {
  #quality-standard .standard-note::before {
    width: 4px;
  }
}
#quality-standard .standard-note h3 {
  margin-bottom: 18px;
  color: #374ea2;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #quality-standard .standard-note h3 {
    font-size: 27px;
  }
}
@media screen and (max-width: 640px) {
  #quality-standard .standard-note h3 {
    margin-bottom: 14px;
    font-size: 22px;
  }
}
#quality-standard .standard-note p {
  max-width: 900px;
  margin: 0 auto;
  color: #515152;
  font-size: 17px;
  line-height: 1.9;
}
@media screen and (max-width: 640px) {
  #quality-standard .standard-note p {
    font-size: 15px;
    line-height: 1.7;
  }
}
#quality-standard .standard-card:nth-child(1) .standard-code {
  background: rgba(218, 33, 40, 0.08);
  color: #da2128;
}
#quality-standard .standard-card:nth-child(5) .standard-code {
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  #quality-standard .standard-card:nth-child(5) .standard-code {
    font-size: 16px;
  }
}

#production-capacity {
  background: linear-gradient(180deg, #fff 0%, rgba(55, 78, 162, 0.03) 100%);
}
#production-capacity .capacity-highlight {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 50px 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #374ea2 0%, #0d3192 100%);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #production-capacity .capacity-highlight {
    margin-bottom: 44px;
    padding: 44px 42px;
  }
}
@media screen and (max-width: 640px) {
  #production-capacity .capacity-highlight {
    margin-bottom: 30px;
    padding: 34px 22px;
    border-radius: 16px;
  }
}
#production-capacity .capacity-highlight::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
@media screen and (max-width: 640px) {
  #production-capacity .capacity-highlight::before {
    top: -110px;
    right: -120px;
  }
}
#production-capacity .capacity-highlight::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
@media screen and (max-width: 640px) {
  #production-capacity .capacity-highlight::after {
    bottom: -110px;
    left: -120px;
  }
}
#production-capacity .capacity-value {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 24px;
}
#production-capacity .capacity-value strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #production-capacity .capacity-value strong {
    font-size: 56px;
  }
}
@media screen and (max-width: 640px) {
  #production-capacity .capacity-value strong {
    font-size: 44px;
  }
}
#production-capacity .capacity-value span {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 100rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 640px) {
  #production-capacity .capacity-value span {
    padding: 9px 18px;
    font-size: 14px;
  }
}
#production-capacity .capacity-note {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.9;
}
@media screen and (max-width: 640px) {
  #production-capacity .capacity-note {
    font-size: 15px;
    line-height: 1.7;
  }
}
#production-capacity .capacity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media screen and (max-width: 1024px) {
  #production-capacity .capacity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  #production-capacity .capacity-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
#production-capacity .capacity-card {
  position: relative;
  padding: 40px 35px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  #production-capacity .capacity-card {
    padding: 34px 28px;
  }
}
@media screen and (max-width: 640px) {
  #production-capacity .capacity-card {
    padding: 28px 20px;
  }
}
#production-capacity .capacity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #da2128;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.3s ease;
}
#production-capacity .capacity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #production-capacity .capacity-card:hover {
    transform: none;
  }
}
#production-capacity .capacity-card:hover::before {
  transform: scaleY(1);
}
#production-capacity .capacity-card:hover h3 {
  color: #374ea2;
}
#production-capacity .capacity-card h3 {
  margin-bottom: 18px;
  color: #222;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  #production-capacity .capacity-card h3 {
    margin-bottom: 12px;
    font-size: 19px;
  }
}
#production-capacity .capacity-card p {
  margin: 0;
  color: #515152;
  font-size: 15px;
  line-height: 1.9;
}
@media screen and (max-width: 640px) {
  #production-capacity .capacity-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}

#factory-system {
  background-color: #f8fafc;
}
#factory-system .factory-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  #factory-system .factory-list {
    gap: 28px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 640px) {
  #factory-system .factory-list {
    gap: 22px;
    margin-bottom: 34px;
  }
}
#factory-system .factory-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #factory-system .factory-item {
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  #factory-system .factory-item {
    border-radius: 16px;
  }
}
#factory-system .factory-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #factory-system .factory-item:hover {
    transform: none;
  }
}
#factory-system .factory-item:hover .factory-image img {
  transform: scale(1.05);
}
#factory-system .factory-media {
  flex: 0 0 45%;
  max-width: 45%;
}
@media screen and (max-width: 1024px) {
  #factory-system .factory-media {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
#factory-system .factory-image {
  height: 100%;
  margin: 0;
  overflow: hidden;
}
#factory-system .factory-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}
@media screen and (max-width: 1024px) {
  #factory-system .factory-image img {
    height: 360px;
    min-height: 0;
  }
}
@media screen and (max-width: 640px) {
  #factory-system .factory-image img {
    height: 240px;
  }
}
#factory-system .factory-content {
  flex: 1;
  padding: 50px;
}
@media screen and (max-width: 1280px) {
  #factory-system .factory-content {
    padding: 42px 36px;
  }
}
@media screen and (max-width: 640px) {
  #factory-system .factory-content {
    padding: 28px 20px;
  }
}
#factory-system .factory-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 100rem;
  background: rgba(218, 33, 40, 0.08);
  color: #da2128;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media screen and (max-width: 640px) {
  #factory-system .factory-label {
    margin-bottom: 14px;
    padding: 7px 14px;
    font-size: 12px;
  }
}
#factory-system .factory-content h3 {
  margin-bottom: 18px;
  color: #374ea2;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #factory-system .factory-content h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 640px) {
  #factory-system .factory-content h3 {
    margin-bottom: 14px;
    font-size: 22px;
  }
}
#factory-system .factory-content > p {
  margin-bottom: 30px;
  color: #515152;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  #factory-system .factory-content > p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
  }
}
#factory-system .factory-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
#factory-system .factory-info li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 24px;
  color: #515152;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  #factory-system .factory-info li {
    margin-bottom: 12px;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.65;
  }
}
#factory-system .factory-info li:last-child {
  margin-bottom: 0;
}
#factory-system .factory-info li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #da2128;
  position: absolute;
  top: 11px;
  left: 0;
}
@media screen and (max-width: 640px) {
  #factory-system .factory-info li::before {
    top: 9px;
    width: 7px;
    height: 7px;
  }
}
#factory-system .factory-info strong {
  color: #374ea2;
  font-weight: 700;
}
#factory-system .factory-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  #factory-system .factory-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  #factory-system .factory-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
#factory-system .gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  #factory-system .gallery-item {
    border-radius: 12px;
  }
}
#factory-system .gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #factory-system .gallery-item:hover {
    transform: none;
  }
}
#factory-system .gallery-item:hover img {
  transform: scale(1.08);
}
#factory-system .gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}
@media screen and (max-width: 1280px) {
  #factory-system .gallery-item img {
    height: 220px;
  }
}
@media screen and (max-width: 640px) {
  #factory-system .gallery-item img {
    height: 230px;
  }
}
#factory-system .factory-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  #factory-system .factory-item:nth-child(even) {
    flex-direction: column;
  }
}

#technical-team {
  background-color: #fff;
}
#technical-team .team-wrap {
  display: flex;
  align-items: stretch;
  gap: 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  #technical-team .team-wrap {
    gap: 34px;
  }
}
@media screen and (max-width: 1024px) {
  #technical-team .team-wrap {
    flex-direction: column;
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 640px) {
  #technical-team .team-wrap {
    gap: 22px;
    margin-bottom: 32px;
  }
}
#technical-team .team-media {
  flex: 0 0 45%;
  max-width: 45%;
}
@media screen and (max-width: 1024px) {
  #technical-team .team-media {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
#technical-team .team-image {
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 640px) {
  #technical-team .team-image {
    border-radius: 16px;
  }
}
#technical-team .team-image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 1024px) {
  #technical-team .team-image img {
    height: 420px;
    min-height: 0;
  }
}
@media screen and (max-width: 640px) {
  #technical-team .team-image img {
    height: 260px;
  }
}
#technical-team .team-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (max-width: 640px) {
  #technical-team .team-content {
    gap: 16px;
  }
}
#technical-team .team-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  #technical-team .team-item {
    gap: 18px;
    padding: 24px;
  }
}
@media screen and (max-width: 640px) {
  #technical-team .team-item {
    gap: 14px;
    padding: 22px 18px;
    border-radius: 12px;
  }
}
#technical-team .team-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #technical-team .team-item:hover {
    transform: none;
  }
}
#technical-team .team-item:hover .team-icon {
  background: #374ea2;
  color: #fff;
}
#technical-team .team-item:hover h3 {
  color: #374ea2;
}
#technical-team .team-icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(55, 78, 162, 0.08);
  color: #374ea2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  #technical-team .team-icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }
}
#technical-team .team-info h3 {
  margin-bottom: 10px;
  color: #222;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  #technical-team .team-info h3 {
    margin-bottom: 8px;
    font-size: 19px;
  }
}
#technical-team .team-info p {
  margin: 0;
  color: #515152;
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  #technical-team .team-info p {
    font-size: 14px;
    line-height: 1.65;
  }
}
#technical-team .team-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  #technical-team .team-highlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  #technical-team .team-highlight {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
#technical-team .highlight-item {
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #374ea2 0%, #0d3192 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1280px) {
  #technical-team .highlight-item {
    padding: 34px 24px;
  }
}
@media screen and (max-width: 640px) {
  #technical-team .highlight-item {
    padding: 28px 20px;
    border-radius: 12px;
  }
}
#technical-team .highlight-item::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
@media screen and (max-width: 640px) {
  #technical-team .highlight-item::before {
    top: -60px;
    right: -60px;
  }
}
#technical-team .highlight-item strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #technical-team .highlight-item strong {
    font-size: 44px;
  }
}
@media screen and (max-width: 640px) {
  #technical-team .highlight-item strong {
    margin-bottom: 8px;
    font-size: 38px;
  }
}
#technical-team .highlight-item span {
  position: relative;
  z-index: 2;
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 640px) {
  #technical-team .highlight-item span {
    font-size: 15px;
    line-height: 1.55;
  }
}
#technical-team .highlight-item:nth-child(2) {
  background: linear-gradient(135deg, #da2128 0%, #fa0103 100%);
}

#production-technology {
  background-color: #fff;
}
#production-technology .technology-feature {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 70px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #production-technology .technology-feature {
    flex-direction: column;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 640px) {
  #production-technology .technology-feature {
    margin-bottom: 32px;
    border-radius: 16px;
  }
}
#production-technology .feature-media {
  flex: 0 0 50%;
  max-width: 50%;
}
@media screen and (max-width: 1024px) {
  #production-technology .feature-media {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
#production-technology .feature-image {
  height: 100%;
  margin: 0;
  overflow: hidden;
}
#production-technology .feature-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 1024px) {
  #production-technology .feature-image img {
    height: 380px;
    min-height: 0;
  }
}
@media screen and (max-width: 640px) {
  #production-technology .feature-image img {
    height: 240px;
  }
}
#production-technology .feature-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  #production-technology .feature-content {
    padding: 46px;
  }
}
@media screen and (max-width: 640px) {
  #production-technology .feature-content {
    padding: 28px 20px;
  }
}
#production-technology .feature-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  padding: 10px 18px;
  border-radius: 100rem;
  background: rgba(218, 33, 40, 0.08);
  color: #da2128;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (max-width: 640px) {
  #production-technology .feature-label {
    margin-bottom: 14px;
    padding: 8px 14px;
    font-size: 12px;
  }
}
#production-technology .feature-content h3 {
  margin-bottom: 20px;
  color: #374ea2;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #production-technology .feature-content h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  #production-technology .feature-content h3 {
    margin-bottom: 14px;
    font-size: 22px;
  }
}
#production-technology .feature-content > p {
  margin-bottom: 30px;
  color: #515152;
  font-size: 16px;
  line-height: 1.9;
}
@media screen and (max-width: 640px) {
  #production-technology .feature-content > p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
  }
}
#production-technology .feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#production-technology .feature-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 30px;
  color: #515152;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  #production-technology .feature-list li {
    margin-bottom: 10px;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.65;
  }
}
#production-technology .feature-list li:last-child {
  margin-bottom: 0;
}
#production-technology .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #da2128;
  font-weight: 700;
}
#production-technology .technology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  #production-technology .technology-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  #production-technology .technology-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
#production-technology .technology-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  #production-technology .technology-card {
    border-radius: 12px;
  }
}
#production-technology .technology-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  #production-technology .technology-card:hover {
    transform: none;
  }
}
#production-technology .technology-card:hover .card-image img {
  transform: scale(1.08);
}
#production-technology .technology-card:hover h3 {
  color: #374ea2;
}
#production-technology .technology-card h3 {
  margin: 24px 24px 12px;
  color: #222;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  #production-technology .technology-card h3 {
    margin: 18px 20px 10px;
    font-size: 18px;
  }
}
#production-technology .technology-card p {
  margin: 0;
  padding: 0 24px 24px;
  color: #515152;
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  #production-technology .technology-card p {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.65;
  }
}
#production-technology .card-image {
  margin: 0;
  overflow: hidden;
}
#production-technology .card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}
@media screen and (max-width: 1280px) {
  #production-technology .card-image img {
    height: 210px;
  }
}
@media screen and (max-width: 640px) {
  #production-technology .card-image img {
    height: 220px;
  }
}

/*# sourceMappingURL=ladi-15.css.map */
