/* ===== page technology-technologyindex (compiled from Vue SCSS) ===== */
@charset "UTF-8";
.text-primary-light {
  color: #eaf6f2;
}

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

.section-header {
  margin-bottom: 48px;
}
.section-header .text-h2 {
  margin-bottom: 12px;
}

/* Page Hero Styles*/
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-tags .tag-light {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  font-size: 13px;
  border-radius: 4px;
}

/* 2. Overview*/
.tech-overview .category-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tech-overview .category-card .tech-img-placeholder {
  height: 200px;
  flex-shrink: 0;
  background-color: #e2ebe8;
  width: 100%;
}
.tech-overview .category-card .card-content {
  padding: 32px;
  flex: 1;
}
.tech-overview .category-card .tech-sublist li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #66736e;
}
.tech-overview .category-card .tech-sublist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0b6b5a;
}

/* 3. Matrix*/
.matrix-section .matrix-wrapper {
  overflow-x: auto;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #d9e5e0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.matrix-section .matrix-table {
  min-width: 600px;
}
.matrix-section .matrix-table th,
.matrix-section .matrix-table td {
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid #d9e5e0;
  border-right: 1px solid #d9e5e0;
}
.matrix-section .matrix-table th:last-child,
.matrix-section .matrix-table td:last-child {
  border-right: none;
}
.matrix-section .matrix-table tr:last-child td {
  border-bottom: none;
}
.matrix-section .matrix-table th {
  background-color: #f7faf9;
  font-weight: 600;
  color: #1e2b27;
}
.matrix-section .matrix-table th.clickable-th {
  cursor: pointer;
  transition: color 160ms ease;
}
.matrix-section .matrix-table th.clickable-th:hover {
  color: #0b6b5a;
}
.matrix-section .matrix-table .matrix-corner {
  text-align: left;
  font-size: 13px;
  color: #66736e;
  position: relative;
}
.matrix-section .matrix-table .tech-name {
  text-align: left;
  font-weight: 500;
}
.matrix-section .matrix-table .tech-name.clickable-td {
  cursor: pointer;
  transition: color 160ms ease;
}
.matrix-section .matrix-table .tech-name.clickable-td:hover {
  color: #0b6b5a;
}
.matrix-section .matrix-table .matrix-cell .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d9e5e0;
  margin: 0 auto;
}
.matrix-section .matrix-table .matrix-cell .dot.is-active {
  background-color: #0b6b5a;
  box-shadow: 0 0 0 4px rgba(11, 107, 90, 0.2);
  animation: dot-breathe 2s infinite ease-in-out;
}

/* 4. Process*/
.process-section .process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.process-section .process-steps .step-item {
  position: relative;
  width: 150px;
  text-align: center;
}
.process-section .process-steps .step-item .step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0b6b5a;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(11, 107, 90, 0.3);
}
.process-section .process-steps .step-item .step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-section .process-steps .step-item .step-desc {
  font-size: 13px;
  line-height: 1.4;
}
.process-section .process-steps .step-item .step-connector {
  position: absolute;
  top: 24px;
  right: -32px;
  transform: translateY(-50%);
  color: #d9e5e0;
}

/* 5. Quality*/
.quality-section .feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quality-section .feature-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.quality-section .feature-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: rgba(11, 107, 90, 0.1);
  color: #0b6b5a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}
.quality-section .quality-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.quality-section .quality-image .img-placeholder {
  width: 100%;
}
@supports not (aspect-ratio: 4/3) {
  .quality-section .quality-image .img-placeholder {
    padding-bottom: 75%;
  }
}
.quality-section .quality-image .img-placeholder {
  aspect-ratio: 4/3;
  background-color: #e2ebe8;
  border-radius: 12px;
}

/* 6. CTA Form*/
.cta-form-section .btn-lg {
  height: 52px;
  padding: 0 48px;
  font-size: 16px;
  font-weight: 600;
}
.cta-form-section .cta-custom-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  transition: all 160ms ease;
}
.cta-form-section .cta-custom-btn:hover {
  background-color: #ffffff;
  color: #0b6b5a;
  opacity: 0.9;
}

@keyframes dot-breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 107, 90, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(11, 107, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(11, 107, 90, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content.is-first-enter .text-h1,
.hero-content.is-first-enter .hero-slogan,
.hero-content.is-first-enter .hero-tags {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; will-change: transform, opacity;
  opacity: 0;
}
.hero-content.is-first-enter .hero-slogan {
  animation-delay: 0.2s;
}
.hero-content.is-first-enter .hero-tags {
  animation-delay: 0.4s;
}

.hero-image.is-first-enter {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; will-change: transform, opacity;
  animation-delay: 0.4s;
  opacity: 0;
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.24s ease, border-color 0.24s ease;
}
.reveal-up.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.95);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.24s ease, border-color 0.24s ease;
}
.reveal-zoom.is-revealed {
  opacity: 1;
  transform: scale(1);
}

/* Reverted from utilities.scss */
.text-center {
  text-align: center;
}

.text-secondary {
  color: #66736e;
}

.text-sm {
  font-size: 14px;
}

.mt-3 {
  margin-top: 16px;
}

.font-weight-bold {
  font-weight: bold;
}

.bg-light {
  background-color: #f7faf9;
}

.mt-1 {
  margin-top: 8px;
}

.mb-5 {
  margin-bottom: 32px;
}

.mt-4 {
  margin-top: 24px;
}

.mt-2 {
  margin-top: 12px;
}

/* Reverted responsive */
@media (max-width: 1199px) {
  .process-section .process-steps .step-item .step-connector {
    display: none;
  }
}