.page-hero {
  position: relative;
  overflow: hidden;
  height: 510px;
  display: flex;
  align-items: center;
}

.page-hero__bg,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

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

.page-hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(13, 13, 13, 0.69) 0%,
    rgba(13, 13, 13, 0.47) 58%,
    rgba(13, 13, 13, 0.39) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: var(--white);
}

.page-breadcrumb {
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
  color: var(--white);
}

.page-hero h1 {
  margin: 0 0 18px;
  max-width: 1120px;
  font-size: 48px;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
}

.page-hero h1 span {
  color: var(--orange);
}

.page-hero p {
  max-width: 860px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.page-section--light {
  background: var(--white);
}

.page-section--muted {
  background: var(--bg);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
}

.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 60px;
  flex-wrap: wrap;
}

.filter-bar__inner > span {
  color: #6b7280;
  font-size: 14px;
  margin-right: 8px;
}

.filter-chip {
  border: 1px solid rgba(13, 13, 13, 0.16);
  background: var(--white);
  color: var(--text);
  border-radius: 4px;
  min-height: 34px;
  padding: 0 24px;
  padding: 4px 24px 0 24px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.card-grid {
  display: grid;
  gap: 40px;
}

.card-grid--products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--solutions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="solution-detail"] .card-grid--solutions,
body[data-page="product-detail"] .card-grid--solutions {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

body[data-page="solution-detail"] .card-grid--solutions::-webkit-scrollbar,
body[data-page="product-detail"] .card-grid--solutions::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.card-grid--blog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 370px;
  height: 470px;
  margin: 0 auto;
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
}

.product-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

.product-card__meta {
  display: none;
}

.product-card__image {
  display: grid;
  place-items: center;
  flex: 1;
  padding-top: 20px;
}

.product-card__image img {
  max-height: 300px;
  object-fit: contain;
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  display: block;
  padding: 32px;
  text-align: left;
  background: rgba(249, 115, 22, 0.8);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-card__overlay img {
  display: none;
}

.product-card__overlay p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}

.product-card__overlay .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  color: var(--text);
  border: none;
  font-weight: 600;
  text-transform: capitalize;
}

.product-card__overlay .btn:hover {
  background: #f4f4f5;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.pagination-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid rgba(13, 13, 13, 0.25);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-button.is-active,
.page-button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid rgba(13, 13, 13, 0.25);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.detail-main-image {
  min-height: 500px;
  flex: 1;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #E8EDF6;
}

.detail-main-image img {
  max-height: 440px;
  object-fit: contain;
}

.detail-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.detail-thumb {
  width: 110px;
  height: 110px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #E8EDF6;
  overflow: hidden;
  padding: 10px;
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-thumb.is-active,
.detail-thumb:hover {
  border-color: var(--blue);
}

.detail-copy h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.35;
}

.detail-copy__meta {
  margin: 10px 0 0;
  font-size: 14px;
  color: rgba(13, 13, 13, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.detail-copy__desc {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.8;
}

.spec-table {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: 6px;
}

.spec-table__head {
  background: var(--blue);
  color: var(--white);
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 22px;
  background: var(--white);
}

.spec-row.is-alt {
  background: rgba(232, 237, 246, 0.5);
}

.spec-row span {
  color: rgba(13, 13, 13, 0.6);
}

.spec-row strong {
  font-weight: 600;
}

.feature-banner {
  display: grid;
  grid-template-columns: minmax(0, 830px) minmax(0, 1fr);
  gap: 0;
  margin-bottom: 46px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
}

.feature-banner__media img {
  width: 420px;
  height: 420px;
  margin: 0 auto;
  object-fit: cover;
}

.feature-banner__copy {
  padding: 36px;
}

.feature-banner__copy h2 {
  margin: 12px 0 12px;
  font-size: 26px;
}

.feature-banner__copy p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.feature-tag,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 2px;
  background: #eff6ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.tag--orange {
  background: var(--orange);
  color: var(--white);
}

.solution-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  min-height: 420px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.solution-card__tag,
.solution-card__cat {
  position: absolute;
  top: 34px;
  z-index: 2;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.solution-card:hover .solution-card__tag,
.solution-card:hover .solution-card__cat {
  opacity: 0;
}

.solution-card__tag {
  left: 30px;
  background: #eff6ff;
  color: var(--blue);
}

.solution-card__cat {
  right: 30px;
  background: var(--blue);
  color: var(--white);
}

.solution-card__image {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 36px;
}

.solution-card__image img {
  height: 270px;
  margin:50px 0 0 0;
  object-fit: contain;
}

.solution-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 30px;
  background: rgba(29, 78, 216, 0.76);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 3;
}

.solution-card__overlay p {
  position: absolute;
  top: 34px;
  left: 30px;
  right: 30px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.solution-card:hover .solution-card__overlay {
  opacity: 1;
}

.solution-detail-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.solution-machine {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), #fff);
}

.solution-machine > img {
  display: block;
  margin: 0 auto;
  max-width: 520px;
  padding-top: 40px;
  object-fit: contain;
}

.machine-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 0;
  background: transparent;
  padding: 0;
}

.machine-marker span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
}

.machine-marker span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.machine-marker--orange span {
  background: rgba(249, 115, 22, 0.4);
}

.machine-marker--orange span::after {
  background: var(--orange);
}

.machine-marker--blue span {
  background: rgba(10, 102, 221, 0.45);
}

.machine-marker--blue span::after {
  background: var(--blue);
}

.machine-marker em {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 7px 10px;
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
  white-space: nowrap;
  font-style: normal;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.machine-marker:hover em {
  opacity: 1;
}

.solution-cta {
  display: flex;
  justify-content: center;
}

.content-block {
  margin-bottom: 28px;
}

.content-block__title {
  position: relative;
  margin-bottom: 18px;
  padding-left: 18px;
  font-size: 20px;
  font-weight: 600;
}

.content-block__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 22px;
  border-radius: 1px;
  background: var(--blue);
}

.content-block__body {
  padding: 30px 34px;
  border-radius: 6px;
  background: var(--white);
}

.content-block__body p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}

.solution-spec-table {
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
}

.solution-spec-row {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 26px;
}

.solution-spec-row.is-alt {
  background: rgba(232, 237, 246, 0.7);
}

.solution-spec-row span {
  color: #333;
  font-weight: 500;
}

.solution-spec-row strong {
  color: #555;
  font-weight: 500;
}

.form-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 30px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.form-banner h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.form-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.blog-feature-card {
  display: grid;
  height: 380px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.blog-feature-card__media img {
  width: 100%;
  height: 100%;
  height: 380px;
  object-fit: cover;
}

.blog-feature-card__copy {
  height: 380px;
  padding: 42px;
}

.blog-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.blog-feature-card__copy h2 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.4;
}

.blog-feature-card__copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.blog-meta-line {
  display: flex;
  gap: 18px;
  color: #9ca3af;
  font-size: 12px;
}

.blog-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card__image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-card__copy {
  padding: 24px;
}

.blog-card__top,
.blog-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
}

.blog-card__top {
  color: #9ca3af;
}

.blog-card__copy h3 {
  margin: 14px 0 12px;
  font-size: 18px;
  line-height: 1.5;
}

.blog-card__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.blog-card__bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f3f4f6;
}

.blog-card__bottom strong {
  color: var(--blue);
}

.article-breadcrumb {
  margin-bottom: 48px;
  color: #6B7280;
  font-size: 14px;
}

.article-breadcrumb a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
  color: var(--blue);
}

.article-breadcrumb strong {
  color: #111827;
  font-weight: 500;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.article-main {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

.article-body {
  padding: 34px;
}

.article-body p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.9;
  color: #374151;
}

.article-sidebar {
  display: grid;
  gap: 22px;
}

.quote-box,
.related-box,
.faq-side-card,
.contact-side__card {
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.quote-box h3,
.related-box h3,
.faq-side-card h3,
.contact-side__card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.quote-box p,
.faq-side-card p,
.contact-side__card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.related-box a,
.faq-side-card a,
.contact-side__card a {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--blue);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.faq-group {
  margin-bottom: 28px;
}

.faq-group h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.faq-item {
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
}

.faq-question strong {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
  padding-top: 0;
}

.faq-item.is-open .faq-question strong {
  transform: rotate(45deg);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(0, 1fr);
  gap: 54px;
}

.about-gallery,
.about-copy {
  min-width: 0;
}

.about-gallery {
  width: 100%;
  max-width: 740px;
  overflow: hidden;
}

.about-gallery .company-thumbs {
  overflow: hidden;
  width: 100%;
}

.about-gallery .company-thumbs button {
  padding: 0;
  border: none;
  background: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 238 / 140;
  display: block;
  width: 100%;
}

.about-gallery .company-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy > p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
}

.about-panels {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  height: 560px;
  border-radius: 10px;
}

.about-panel {
  position: relative;
  width: 310px;
  flex: none;
  overflow: hidden;
  transition: width 0.4s ease;
}

.about-panel.is-active {
  width: 1280px;
}

.about-panel img,
.about-panel__overlay {
  position: absolute;
  inset: 0;
}

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

.about-panel__overlay {
  background: rgba(0, 0, 0, 0.35);
}

.about-panel__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding:70px 100px;
  color: var(--white);
  z-index: 2;
}

.about-panel__content .panel-main-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-panel.is-active .about-panel__content .panel-main-text {
  opacity: 1;
}

.about-panel__content .panel-bottom-indicator {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-panel__content .panel-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-panel.is-active .about-panel__content .panel-icon {
  left: 100px;
  transform: translateY(-50%);
}

.about-panel__content .panel-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.6;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.about-panel.is-active .about-panel__content .panel-number {
  left: 100px;
  transform: none;
}

.about-panel__content h3 {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}

.about-panel__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 1070px;
}

.about-panels--full {
  border-radius: 0;
  height: 680px;
  gap: 10px;
}

.stats--about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: none;
  padding: 20px 0 0 0;
  margin: 20px 0 0 0;
}

.stats--about .stat-item {
  width: auto;
  margin-bottom: 0;
  padding: 24px 20px;
}

.stats--about .stat-item:nth-child(1) {
  border-right: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.stats--about .stat-item:nth-child(2) {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.stats--about .stat-item:nth-child(3) {
  border-right: 1px solid rgba(0,0,0,0.06);
}

.stats--about .stat-item strong {
  color: var(--orange);
}

.company-news-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.news-content h3 {
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 16px 0;
}

.news-content .news-date {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.news-content .news-pagination {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}

.contact-bar {
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-bar__grid > div {
  padding: 24px 20px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-bar__grid span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.contact-bar__grid strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.contact-layout > form {
  width: 1050px;
  /* height: 787px; */
}

.contact-side {
  width: 550px;
}

.contact-card {
  padding: 42px 48px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.contact-card .field input,
.contact-card .field textarea,
.contact-card .code-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.contact-card .code-box {
  display: flex;
  align-items: center;
  padding-right: 12px;
}

.contact-card .code-box input {
  border: none;
  background: transparent;
  box-shadow: none;
  flex: 1;
}

.contact-card .code-box input:focus {
  border: none;
  outline: none;
}

.contact-card .field input:focus,
.contact-card .field textarea:focus,
.contact-card .code-box:focus-within {
  border-color: var(--blue);
}

.contact-card .online-message-submit {
  width: 100%;
}

.contact-card__head {
  margin-bottom: 20px;
}

.contact-card__head h2 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
}

.contact-card__head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-side__top-card {
  height: 565px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 32px;
  margin-bottom: 44px;
}

.contact-side__bottom-card {
  height: 244px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1440px) {
  .card-grid--products,
  .card-grid--solutions,
  .card-grid--blog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-layout,
  .article-layout,
  .faq-layout,
  .about-layout,
  .contact-layout,
  .blog-feature-card {
    grid-template-columns: 1fr;
  }

  .feature-banner {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}

/* Solution Detail V2 Styles */
.solution-detail-title {
  color: #0A66DD;
  font-size: 48px;
  width: 1160px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 30px 0;
}

.solution-machine-showcase {
  background: #f4f6f9;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.showcase-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.machine-image-wrapper{
  margin: -140px 0 0 0 ;
     right:100px;
}

.machine-image-wrapper > img {
  width: 500px;
  height: 700px;
}

.solution-machine-showcase > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* Hotspots */
.hotspot {
  position: absolute;
  z-index: 10;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.hotspot-dot {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--blue);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  padding: 0;
}

.hotspot-dot::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background-color: rgba(37, 99, 235, 0.2); /* var(--blue) with opacity */
  border-radius: 50%;
  z-index: -1;
  transition: background-color 0.3s ease;
}

.hotspot:hover {
  z-index: 9999;
}
.hotspot:hover .hotspot-dot {
  background-color: #F97316;
}

.hotspot:hover .hotspot-dot::before {
  background-color: rgba(249, 115, 22, 0.2);
}

.hotspot-tooltip {
  position: absolute;
  left: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  font-size: 14px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}

/* tooltip 层级设到最高，盖在按钮上方 */
.hotspot-tooltip {
  z-index: 9999;
}

.hotspot-tooltip::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 1px;
  background: #ccc;
}

.hotspot-tooltip::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  order: -1;
}

.hotspot:hover .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  left: calc(100% + 25px); /* small slide effect */
}

.btn-find-plan {
  position: absolute;
  top: 44%;
  right: 23%;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  z-index: 0 !important;
  /* box-shadow: 0 4px 12px rgba(10, 102, 221, 0.3); */
}

.horizontal-contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 4px;
}

.horizontal-contact-bar__text h3 {
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.horizontal-contact-bar__text p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.horizontal-contact-bar__form {
  display: contents;
}

.horizontal-contact-bar__form input[type="text"],
.horizontal-contact-bar__form input[type="email"] {
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 4px;
  font-size: 14px;
  height: 50px;
  width: 150px;
  flex: none;
}

.horizontal-contact-bar__form input[name="message"] {
  width: 180px;
}

.code-box-inline {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 0 4px;
  height: 50px;
  width: 180px;
  flex: none;
}

.code-box-inline input {
  border: none !important;
  background: transparent !important;
  width: 60px !important;
  height: 100%;
  padding: 0 8px !important;
}

.code-box-inline input:focus {
  outline: none;
}

.code-box-inline img {
  height: 32px;
  width: 80px;
  object-fit: cover;
  cursor: pointer;
}

.btn-submit-orange {
  background: var(--orange);
  color: var(--white);
  border: none;
  height: 42px;
  /* padding: 0 24px; */
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

.btn-submit-orange:hover {
  background: #e66a14;
  color: var(--white);
}

.content-block.style-v2 .content-block__title {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.content-block.style-v2 .content-block__title::before {
  content: '';
  display: block;
  width: 4px;
  height: 18px;
  background: var(--blue);
  margin-right: 10px;
}

.content-block.style-v2 .content-block__body {
  background: #fff;
  padding: 30px 40px;
}

.spec-model-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  position: relative;
  padding-bottom: 12px;
}
.spec-model-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
}

.solution-spec-table.v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: transparent;
}

.solution-spec-table.v2 .solution-spec-row {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
}

.solution-spec-table.v2 .solution-spec-row:nth-child(4n+1),
.solution-spec-table.v2 .solution-spec-row:nth-child(4n+2) {
  background: #eef2f8;
}

.solution-spec-table.v2 .solution-spec-row:nth-child(4n+3),
.solution-spec-table.v2 .solution-spec-row:nth-child(4n+4) {
  background: #fff;
}

.solution-spec-table.v2 .solution-spec-row span {
  width: 180px;
  color: #666;
  font-size: 14px;
}

.solution-spec-table.v2 .solution-spec-row strong {
  flex: 1;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

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

.recommended-header h2 {
  color: #0A66DD;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.recommended-arrows {
  display: flex;
  gap: 16px;
}

.recommended-arrows button {
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--blue);
  transition: all 0.2s;
}

.recommended-arrows button:hover,
.recommended-arrows button.is-active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.recommended-card {
  position: relative;
  background: #f0f3f8;
  border-radius: 0;
  overflow: hidden;
  height: 370px;
  width: 336px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.recommended-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.recommended-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 235, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 30px;
  text-align: center;
}

.recommended-card:hover .recommended-card__overlay {
  opacity: 1;
}

.recommended-card__overlay p {
  position: absolute;
  top: 50px;
  left: 20px;
  right: 20px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.recommended-card__overlay .btn {
  background: var(--white);
  color: var(--text);
  border: none;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
}

.recommended-card__overlay .btn:hover {
  background: #f7f9fc;
  /* color: var(--dark); */
}

@media (max-width: 1024px) {
  body[data-page="about"] .page-section > .shell,
  body[data-page="about"] .page-section[style*="height:"] {
    height: auto !important;
    padding: 40px 20px !important;
  }
  body[data-page="about"] .stats--about {
    grid-template-columns: 1fr;
    margin-top: 30px !important;
  }
  body[data-page="about"] .stats--about .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    display: block !important;
    text-align: left !important;
    padding: 20px 0 !important;
  }
  body[data-page="about"] .stats--about .stat-item > div {
    width: 100% !important;
  }
  body[data-page="about"] .stats--about .stat-item:last-child {
    border-bottom: none !important;
  }
  body[data-page="about"] .news-image {
    height: 300px !important;
  }
  body[data-page="about"] .news-image img {
    min-height: auto !important;
  }
  body[data-page="about"] .news-content {
    padding-right: 0 !important;
    padding-top: 20px !important;
  }
  body[data-page="about"] .news-arrows {
    display: none !important;
  }
  body[data-page="about"] .hero-title {
    font-size: 28px !important;
  }
  body[data-page="solution-detail"] .page-section > .shell,
  body[data-page="solution-detail"] .page-section[style*="height:"],
  body[data-page="product-detail"] .page-section > .shell,
  body[data-page="product-detail"] .page-section[style*="height:"] {
    height: auto !important;
    padding: 40px 20px !important;
  }
  body[data-page="product-detail"] .card-grid--solutions {
    gap: 20px !important;
  }
  .product-info-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }
  .info-block {
    padding: 24px;
  }
  .contact-layout {
    flex-direction: column;
    gap: 40px;
  }
  body[data-page="contact"] .page-section > .shell {
    padding: 40px 20px !important;
  }
  body[data-page="contact"] .contact-layout {
    align-items: stretch;
  }
  body[data-page="contact"] .contact-card {
    padding: 30px 20px;
  }
  body[data-page="contact"] .contact-side__top-card,
  body[data-page="contact"] .contact-side__bottom-card {
    height: auto;
    padding: 30px 20px;
  }
  body[data-page="contact"] .contact-side__top-card > div[style*="height:"] {
    height: 200px !important;
  }
  .contact-layout > form,
  .contact-side {
    width: 100%;
  }
  .detail-gallery {
    flex-direction: column-reverse;
  }
  .detail-thumbs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .detail-main-image {
    width: 100%;
    min-height: 300px;
  }
  .detail-main-image img {
    max-height: 300px;
  }
  .company-news-layout {
    grid-template-columns: 1fr;
  }
  body[data-page="about"] .about-panels {
    flex-direction: column;
    height: auto;
  }
  body[data-page="about"] .about-panel {
    width: 100%;
    height: 150px;
    transition: height 0.4s ease;
  }
  body[data-page="about"] .about-panel.is-active {
    width: 100%;
    height: 400px;
  }
  body[data-page="about"] .about-panel__content {
    padding: 30px 20px;
  }
  body[data-page="about"] .about-panel__content .panel-icon {
    top: auto;
    bottom: 20px;
    left: 20px;
    transform: none;
  }
  body[data-page="about"] .about-panel__content .panel-number {
    bottom: 20px;
    left: auto;
    right: 20px;
    transform: none;
  }
  body[data-page="about"] .about-panel.is-active .about-panel__content .panel-icon {
    left: 20px;
    transform: none;
  }
  body[data-page="about"] .about-panel.is-active .about-panel__content .panel-number {
    right: 20px;
    left: auto;
    transform: none;
  }
  body[data-page="about"] .about-panel__content h3 {
    font-size: 28px;
  }
  .solution-detail-title {
    width: 100%;
    font-size: 32px;
  }
  .horizontal-contact-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .horizontal-contact-bar__form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
  .solution-spec-table.v2 {
    grid-template-columns: 1fr;
  }
  .btn-find-plan {
    position: static;
    margin: 10px auto;
  }
  .showcase-container {
    height: auto !important;
    padding: 20px 0;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .card-grid--products,
  .card-grid--solutions,
  .card-grid--blog,
  .contact-bar__grid {
    grid-template-columns: 1fr;
  }
  .contact-bar__grid > div {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .contact-bar__grid > div:last-child {
    border-bottom: none;
  }

  .solution-spec-row,
  .spec-row {
    grid-template-columns: 1fr;
  }

  .solution-spec-table.v2 .solution-spec-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }
  .solution-spec-table.v2 .solution-spec-row span {
    width: 100% !important;
  }

  .form-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Solutions Fixes */
  body[data-page="solutions"] .feature-banner {
    grid-template-columns: 1fr !important;
  }
  body[data-page="solutions"] .feature-banner__media {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body[data-page="solutions"] .feature-banner__media img {
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    object-fit: contain !important;
  }
  body[data-page="solutions"] .feature-banner__copy {
    padding: 24px !important;
  }
  body[data-page="solutions"] .solution-card__tag {
    top: 20px !important;
    left: 20px !important;
  }
  body[data-page="solutions"] .solution-card__cat {
    top: 55px !important;
    left: 20px !important;
    right: auto !important;
  }
  body[data-page="solutions"] .solution-card {
    min-height: auto !important;
  }
  body[data-page="solutions"] .solution-card__image {
    min-height: 320px !important;
    padding: 20px !important;
  }
  body[data-page="solutions"] .solution-card__image img {
    height: 200px !important;
    margin: 80px 0 0 0 !important;
  }

  /* Solution Detail Fixes */
  body[data-page="solution-detail"] .showcase-container {
    height: auto !important;
    padding: 20px 0 !important;
    margin-top: 40px !important;
  }
  body[data-page="solution-detail"] .machine-image-wrapper {
    margin: 0 !important;
  }
  body[data-page="solution-detail"] .machine-image-wrapper > img {
    width: 100% !important;
    max-width: 300px;
    height: auto !important;
  }
  body[data-page="solution-detail"] .hotspot:nth-of-type(3) .hotspot-tooltip {
    left: auto !important;
    right: calc(100% + 15px) !important;
    flex-direction: row-reverse !important;
  }
  body[data-page="solution-detail"] .hotspot:nth-of-type(3) .hotspot-tooltip::before {
    right: auto !important;
    left: 100% !important;
  }
  body[data-page="solution-detail"] .recommended-header h2 {
    font-size: 24px !important;
  }
  body[data-page="solution-detail"] .card-grid--solutions {
    gap: 20px !important;
  }
  body[data-page="solution-detail"] .recommended-card {
    width: 280px !important;
    height: 300px !important;
  }
  body[data-page="solution-detail"] .btn-find-plan {
    position: static !important;
    margin: 20px auto 0 !important;
  }

  /* Blog Fixes */
  body[data-page="blog"] .blog-feature-card {
    height: auto !important;
  }
  body[data-page="blog"] .blog-feature-card__media img {
    height: auto !important;
    aspect-ratio: 16/9;
  }
  body[data-page="blog"] .blog-feature-card__copy {
    height: auto !important;
    padding: 24px !important;
  }

  /* Blog Detail Fixes */
  body[data-page="blog-detail"] .article-main {
    width: 100% !important;
  }
  body[data-page="blog-detail"] .article-cover {
    height: auto !important;
  }
  body[data-page="blog-detail"] .article-cover img {
    height: auto !important;
    aspect-ratio: 16/9;
  }
  body[data-page="blog-detail"] .article-body {
    padding: 24px !important;
  }
  body[data-page="blog-detail"] h1[data-article-title] {
    font-size: 24px !important;
  }

  /* FAQ Fixes */
  body[data-page="faq"] .faq-item.is-open .faq-answer {
    max-height: 500px !important;
  }
}

.detail-gallery { display: flex; gap: 20px; align-items: flex-start; }

/* Product Detail Typography & Layout */
.product-header-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.product-header-tags span {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background-color: #EFF6FF;
  border-radius: 4px;
}
.product-main-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 30px;
}
.product-quick-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.quick-spec-item {
  background: #f4f6f9;
  padding: 16px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quick-spec-item .label {
  font-size: 13px;
  color: #888;
}
.quick-spec-item .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.product-action-buttons {
  display: flex;
  gap: 20px;
}
.btn-whatsapp {
  background: #22c55e;
  color: #fff;
  border-color: #22c55e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.btn-get-quote {
  padding: 12px 40px;
  font-size: 16px;
  flex: 1;
}
.btn-whatsapp {
  padding: 12px 40px;
  font-size: 16px;
  flex: 1;
  justify-content: center;
}

/* Product Info Grid */
.product-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.info-block {
  background: var(--white);
  padding: 40px;
  border-radius: 6px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.info-block__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
  padding-left: 16px;
  border-left: 4px solid var(--blue);
}
.info-column-left,
.info-column-right {
  display: flex;
  flex-direction: column;
}
.info-column-left > .info-block:first-child {
  flex: 1;
}
.info-column-right > .info-block:first-child {
  flex: 1;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  padding-bottom: 8px;
}
.feature-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.application-tags span {
  font-size: 13px;
  color: #666;
  border: 1px solid #eaeaea;
  padding: 8px 16px;
  border-radius: 4px;
}
.bg-muted-section {
  background-color: #E8EDF6;
  padding: 60px 0;
}

.product-spec-table {
  display: flex;
  flex-direction: column;
  margin: 0 -12px;
}

.product-spec-table .solution-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 12px;
  border-bottom: 1px solid #E5E7EB;
  background: transparent;
}

.product-spec-table .solution-spec-row:nth-child(even) {
  background-color: #F9FAFB;
}

.product-spec-table .solution-spec-row:last-child {
  border-bottom: none;
}

.product-spec-table .solution-spec-row span {
  color: #666;
  font-size: 14px;
}

.product-spec-table .solution-spec-row strong {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  body[data-page="product-detail"] .product-info-grid,
  body[data-page="product-detail"] .feature-list,
  body[data-page="product-detail"] .product-quick-specs {
    grid-template-columns: 1fr !important;
  }
  body[data-page="product-detail"] .info-column-left .info-block {
    margin-bottom: 30px !important;
  }
  body[data-page="product-detail"] .recommended-header h2 {
    font-size: 24px !important;
  }
  body[data-page="product-detail"] .recommended-card {
    width: 280px !important;
    height: 300px !important;
  }

  /* Filter bar mobile adjustments for Blog, Products, Solutions */
  .filter-bar__inner {
    flex-wrap: wrap !important;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .filter-bar__inner > span {
    width: 100%;
    margin-bottom: 4px;
    margin-right: 0;
  }
  .filter-chip {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
    padding: 0 12px;
    font-size: 13px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
