/* about.html — extracted & aligned with site section patterns */

.page-about .about-hero-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.page-about .about-hero-bg {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background-image: url('../image/b005.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  pointer-events: none;
}

.page-about .about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.page-about .about-hero-section > .container {
  position: relative;
  z-index: 2;
}

.page-about .about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-about .about-hero-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin: 0 auto 1.5rem;
  animation: icon-float 4s ease-in-out infinite;
}

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

.page-about .about-hero-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.page-about .about-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.page-about .about-hero-subtitle {
  font-size: 1.125rem;
  color: var(--primary-100);
  max-width: 600px;
  margin: 0 auto;
}

.page-about .about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .page-about .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-about .about-hero-icon {
    width: 60px;
    height: 60px;
  }

  .page-about .about-hero-icon svg {
    width: 30px;
    height: 30px;
  }
}

.page-about .about-intro-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-700);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.page-about .about-intro-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  border-radius: 2px;
}

.page-about .about-intro-content p {
  color: var(--secondary-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.page-about .about-intro-visual {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.page-about .about-intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.page-about .about-intro-visual:hover .about-intro-image {
  transform: scale(1.02);
}

.page-about .stats-enhanced .section-title,
.page-about .stats-enhanced .section-subtitle {
  color: var(--secondary-900);
}

.page-about .stats-enhanced .section-subtitle {
  color: var(--secondary-600);
}

.page-about .stat-card-enhanced {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.page-about .stat-card-enhanced.animate-in {
  animation: slideInUp 0.6s ease forwards;
}

.page-about .stat-card-enhanced:nth-child(1) { animation-delay: 0.1s; }

.page-about .stat-card-enhanced:nth-child(2) { animation-delay: 0.2s; }

.page-about .stat-card-enhanced:nth-child(3) { animation-delay: 0.3s; }

.page-about .stat-card-enhanced:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-about .stat-card-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-about .stat-card-enhanced:hover::before {
  opacity: 1;
}

.page-about .stat-card-enhanced:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.35);
}

.page-about .stat-card-enhanced .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.page-about .stat-card-enhanced .stat-value::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}

.page-about .stat-card-enhanced:hover .stat-value::after {
  width: 60%;
}

.page-about .stat-card-enhanced .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease;
}

.page-about .stat-card-enhanced:hover .stat-label {
  transform: scale(1.05);
}

.page-about .stat-card-enhanced .stat-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
  transition: color 0.3s ease;
}

.page-about .stat-card-enhanced:hover .stat-desc {
  color: rgba(255, 255, 255, 0.9);
}

.page-about .mission-vision-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--secondary-100);
}

.page-about .mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  z-index: 2;
}

.page-about .mission-vision-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  transition: all 0.6s ease;
  opacity: 0;
}

.page-about .mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.page-about .mission-vision-card:hover::after {
  opacity: 1;
  transform: scale(1.5);
}

.page-about .mv-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: mv-float 6s ease-in-out infinite;
}

.page-about .mv-bg-circle:nth-child(1) {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  top: -40px;
  right: -40px;
  animation-delay: 0s;
}

.page-about .mv-bg-circle:nth-child(2) {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  bottom: 30px;
  left: -30px;
  animation-delay: -2s;
}

.page-about .mv-bg-circle:nth-child(3) {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-200), var(--primary-400));
  top: 40%;
  right: 15%;
  animation-delay: -4s;
}

@keyframes mv-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -15px) scale(1.05); }
  66% { transform: translate(-8px, 8px) scale(0.95); }
}

.page-about .mission-vision-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-about .mission-vision-card:nth-child(1) .mission-vision-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.page-about .mission-vision-card:nth-child(2) .mission-vision-icon {
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.page-about .mission-vision-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 26px;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease;
}

.page-about .mission-vision-card:nth-child(1) .mission-vision-icon::before {
  background: linear-gradient(135deg, #fbbf24, #ea580c);
}

.page-about .mission-vision-card:nth-child(2) .mission-vision-icon::before {
  background: linear-gradient(135deg, #22d3ee, #0284c7);
}

.page-about .mission-vision-card:hover .mission-vision-icon {
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.35);
}

.page-about .mission-vision-card:hover .mission-vision-icon::before {
  opacity: 0.25;
  animation: icon-pulse 1.5s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.3); opacity: 0; }
}

.page-about .mission-vision-icon svg {
  width: 40px;
  height: 40px;
  color: white;
  transition: all 0.4s ease;
}

.page-about .mission-vision-card:hover .mission-vision-icon svg {
}

.page-about .mission-vision-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-700);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.page-about .mission-vision-card:hover h3 {
  color: var(--primary-600);
  transform: translateX(6px);
}

.page-about .mission-vision-card p {
  color: var(--secondary-600);
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.page-about .mission-vision-card:hover p {
  color: var(--secondary-700);
}

.page-about .mv-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-400), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.page-about .mission-vision-card:hover .mv-decoration {
  transform: scaleX(1);
}

.page-about .mv-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
  color: var(--primary-700);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  z-index: 1;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.page-about .mission-vision-card:hover .mv-badge {
  opacity: 1;
  transform: scale(1.05);
}

.page-about .value-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-100);
  height: 100%;
}

.page-about .value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-200);
}

.page-about .value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s ease;
  color: var(--white);
}

.page-about .value-card:nth-child(1) .value-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 8px 22px rgba(59, 130, 246, 0.35);
}

.page-about .value-card:nth-child(2) .value-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.35);
}

.page-about .value-card:nth-child(3) .value-icon {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.35);
}

.page-about .value-card:nth-child(4) .value-icon {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  box-shadow: 0 8px 22px rgba(244, 63, 94, 0.35);
}

.page-about .value-card:hover .value-icon {
  transform: scale(1.05);
}

.page-about .value-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.page-about .value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-700);
  margin-bottom: 0.75rem;
}

.page-about .value-card p {
  color: var(--secondary-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

.page-about .industry-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-about .industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.page-about .industry-card:hover::before {
  transform: scaleX(1);
}

.page-about .industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.page-about .industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.page-about .industry-card:hover .industry-icon {
  transform: scale(1.1);
}

.page-about .industry-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.page-about .industry-card:nth-child(1) .industry-icon {
  background: linear-gradient(135deg, #dbeafe, #93c5fd);
  color: #1d4ed8;
}

.page-about .industry-card:nth-child(2) .industry-icon {
  background: linear-gradient(135deg, #ffedd5, #fdba74);
  color: #c2410c;
}

.page-about .industry-card:nth-child(3) .industry-icon {
  background: linear-gradient(135deg, #e0e7ff, #a5b4fc);
  color: #4338ca;
}

.page-about .industry-card:nth-child(4) .industry-icon {
  background: linear-gradient(135deg, #ede9fe, #c4b5fd);
  color: #6d28d9;
}

.page-about .industry-card:nth-child(5) .industry-icon {
  background: linear-gradient(135deg, #ccfbf1, #5eead4);
  color: #0f766e;
}

.page-about .industry-card:nth-child(6) .industry-icon {
  background: linear-gradient(135deg, #dcfce7, #86efac);
  color: #15803d;
}

.page-about .industry-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.page-about .industry-card p {
  color: var(--secondary-600);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.page-about .industry-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.page-about .spec-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--secondary-100);
  color: var(--secondary-700);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.page-about .industry-card:hover .spec-tag {
  background: var(--primary-50);
  color: var(--primary-600);
}

.page-about .global-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-100);
}

.page-about .global-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-200);
}

.page-about .global-card .region-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: 0.5rem;
}

.page-about .global-card .region-countries {
  font-size: 0.875rem;
  color: var(--secondary-600);
}

.page-about .stat-card-enhanced {
  cursor: default;
}

.page-about .stat-card-enhanced .stat-value {
  display: inline-block;
}

.page-about .stat-card-enhanced .stat-value.counting {
  animation: countPulse 0.1s ease;
}

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

.page-about .industry-card {
  cursor: pointer;
}

.page-about .industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-about .industry-card:hover::after {
  opacity: 1;
}

.page-about .spec-tag {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.page-about .spec-tag::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.page-about .spec-tag:hover::before {
  width: 150%;
  height: 150%;
}

.page-about .spec-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.page-about .mission-vision-card {
  cursor: pointer;
}

.page-about .value-card {
  cursor: pointer;
}

.page-about .value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.page-about .value-card:hover::after {
  width: 60%;
}

.page-about .about-intro-content p strong {
  color: var(--primary-600);
}

.page-about .global-card {
  position: relative;
  overflow: hidden;
}

.page-about .global-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  transition: left 0.5s ease;
}

.page-about .global-card:hover::before {
  left: 100%;
}

.page-about .feature-card {
  cursor: pointer;
}

.page-about .feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 2px transparent;
  transition: box-shadow 0.3s ease;
}

.page-about .feature-card:hover::after {
  box-shadow: 0 0 0 2px var(--primary-200);
}

.page-about .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-about .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-about .stagger-1 { transition-delay: 0.1s; }

.page-about .stagger-2 { transition-delay: 0.2s; }

.page-about .stagger-3 { transition-delay: 0.3s; }

.page-about .stagger-4 { transition-delay: 0.4s; }

.page-about .stagger-5 { transition-delay: 0.5s; }

.page-about .stagger-6 { transition-delay: 0.6s; }

/* Section backgrounds — use site bg-section-* / bg-pattern from style.css */
.page-about .section.bg-section-1,
.page-about .section.bg-section-2,
.page-about .section.bg-pattern {
  position: relative;
  isolation: isolate;
}

.page-about .section.bg-section-1 > .container,
.page-about .section.bg-section-2 > .container,
.page-about .section.bg-pattern > .container {
  position: relative;
  z-index: 1;
}

.page-about .section.bg-section-2 {
  border-top: 1px solid rgba(59, 130, 246, 0.06);
  border-bottom: 1px solid rgba(59, 130, 246, 0.06);
}

.page-about .section.bg-pattern {
  border-top: 1px solid rgba(59, 130, 246, 0.06);
}

.page-about .about-mv-grid {
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.page-about .about-industry-grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.page-about .about-global-note {
  margin-top: 2rem;
  color: var(--secondary-600);
  text-align: center;
}

.page-about .cta-buttons .btn-outline-white {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.page-about .industry-card h3 {
  color: var(--primary-600);
}

/* Colorful feature icons (global + certifications) */
.page-about .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.page-about .section-global .feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.page-about .section-global .feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.35);
}

.page-about .section-global .feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.page-about .section-global .feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.35);
}

.page-about .section-cert .feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.page-about .section-cert .feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.page-about .section-cert .feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

.page-about .section-cert .feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.page-about .section-cert .feature-card:nth-child(5) .feature-icon {
  background: linear-gradient(135deg, #eab308, #ca8a04);
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.35);
}

.page-about .section-cert .feature-card:nth-child(6) .feature-icon {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
}

.page-about .feature-card:hover .feature-icon {
  transform: scale(1.06);
}

.page-about .global-network svg {
  width: 100%;
  height: auto;
  min-height: 120px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: var(--radius-xl);
}

@media (prefers-reduced-motion: reduce) {
  .page-about .about-hero-icon,
  .page-about .mv-bg-circle,
  .page-about .stat-card-enhanced:hover,
  .page-about .industry-card:hover,
  .page-about .value-card:hover,
  .page-about .mission-vision-card:hover {
    animation: none;
    transform: none;
  }
}
