/*
Theme Name: Nanocheck
Theme URI: https://nanocheck.vn
Author: Ong Vang
Author URI: https://nanocheck.vn
Description: Giao diện công nghệ cao cấp Nanocheck chuẩn doanh nghiệp, phong cách FPT Software, tối ưu font Muli và hiển thị hiện đại.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: nanocheck
*/

:root {
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  
  /* Tech Xanh Đen (Midnight Blue-Black) */
  --color-navy: #040914;
  --color-navy-dark: #02050b;
  --color-navy-surface: #091322;
  --color-navy-border: #132238;
  
  /* Accent Electric Blues */
  --color-blue-primary: #1d4ed8;
  --color-blue-hover: #1e40af;
  --color-blue-accent: #0284c7;
  --color-cyan-glow: #38bdf8;
  --color-blue-light: #eff6ff;
  --color-blue-subtle: #f0f9ff;
  
  /* Luxury Light Palette */
  --color-bg-body: #f8fafc;
  --color-bg-card: #ffffff;
  --color-bg-secondary: #f1f5f9;
  
  /* Text & Border Shades */
  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --color-text-subtle: #64748b;
  --color-border: #e2e8f0;
  --color-border-hover: #cbd5e1;
  
  /* Radius & Shadows */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  
  --shadow-subtle: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.03);
  --shadow-elevated: 0 20px 35px -10px rgba(11, 25, 44, 0.1), 0 10px 15px -5px rgba(11, 25, 44, 0.05);
  --shadow-glow: 0 0 25px rgba(2, 132, 199, 0.25);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-bg-body);
  color: var(--color-text-main);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
}

main {
  flex: 1;
  width: 100%;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

/* Typography Standards: Semi-Bold Titles & Headings (font-weight 600) */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-slide-title,
.hero-title,
.why-choose-title,
.why-item-title,
.fpt-card-title,
.solution-card-title,
.prod-card-title,
.industry-card-title,
.sample-banner-title,
.sample-item-title,
.process-title,
.cta-title,
.footer-heading,
.page-hero-title,
.about-hero-title,
.services-hero-title,
.contact-hero-title,
.service-hero-title,
.cat-hero-title,
.product-card-title,
.news-card-title,
.stat-title {
  font-family: var(--font-base);
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}

.container-narrow {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* Header & Navigation Bar (FPT Software Style) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 10px rgba(4, 9, 20, 0.04);
  transition: all var(--transition-fast);
}

.top-bar {
  background-color: var(--color-navy);
  color: #94a3b8;
  font-size: 13px;
  padding-block: 6px;
  border-bottom: 1px solid var(--color-navy-border);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-cyan-glow);
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.site-custom-logo {
  display: flex;
  align-items: center;
}

.site-custom-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-custom-logo img.custom-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 22px;
  color: var(--color-navy);
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue-primary) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(29, 78, 216, 0.25);
}

.brand-icon svg {
  width: 22px;
  height: 22px;
}

.brand-name {
  display: flex;
  flex-direction: column;
}

.brand-name-main {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.brand-name-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-blue-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-navy);
  padding-block: 8px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover {
  color: var(--color-blue-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-blue-primary);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Button Component (Max 3 words compliant, flat modern tech style) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-base);
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  line-height: 1.4;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-navy);
  color: #ffffff;
  border: 1px solid var(--color-navy);
  box-shadow: 0 2px 8px rgba(4, 9, 20, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #0284c7;
  border-color: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
  color: #ffffff;
}

.btn-accent {
  background-color: var(--color-navy);
  color: #ffffff;
  border: 1px solid var(--color-navy);
  box-shadow: 0 2px 8px rgba(4, 9, 20, 0.15);
}

.btn-accent:hover {
  background-color: #0284c7;
  border-color: #0284c7;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
  transform: translateY(-1px);
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  color: var(--color-navy);
  border: 1px solid #cbd5e1;
}

.btn-outline:hover {
  border-color: var(--color-navy);
  color: var(--color-navy);
  background-color: #f8fafc;
}

.btn-outline-navy {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-navy:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12.5px;
}

.btn-lg {
  padding: 12px 28px;
  font-size: 14.5px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-navy);
}

/* Hero Banner Slider Section (Full-width Edge-to-Edge with Flat Tech Buttons) */
.hero-banner-section {
  padding-block: 0;
  background-color: var(--color-navy-dark);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-banner-slider {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background-color: var(--color-navy-dark);
  min-height: 520px;
}

@media (min-width: 992px) {
  .hero-banner-slider {
    aspect-ratio: 21 / 8;
    min-height: 520px;
  }
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide-container {
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 9, 20, 0.94) 0%, rgba(4, 9, 20, 0.76) 45%, rgba(4, 9, 20, 0.18) 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: #ffffff;
  padding-bottom: 76px; /* Space for bottom action buttons */
}

.hero-slide-title {
  font-size: 58px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.14;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-slide-desc {
  font-size: 18px;
  font-weight: 300;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 520px;
}

/* Banner Bottom Controls Overlay Layer (Strictly aligned to .container) */
.hero-banner-controls-layer {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.hero-banner-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-banner-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: auto;
}

/* Flat Tech Action Buttons */
.btn-banner-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f5f9;
  color: #0f172a;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 6px; /* Flat modern clean tech corner */
  border: 1px solid #f1f5f9;
  box-shadow: none; /* Flat design, no heavy drop shadow */
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-banner-action:hover {
  background-color: #ffffff;
  color: #0284c7;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-banner-action-flat {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.btn-banner-action-flat:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: #ffffff;
}

/* Pagination Dots (4 Dots) */
.slider-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.slider-pagination .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.slider-pagination .dot:hover {
  background-color: #ffffff;
}

.slider-pagination .dot.active {
  background-color: #ffffff;
  width: 28px;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .hero-banner-slider {
    min-height: 480px;
    border-radius: 0;
  }
  .hero-slide-title {
    font-size: 34px;
    line-height: 1.2;
  }
  .hero-slide-desc {
    font-size: 15px;
  }
  .hero-slide-content {
    padding-bottom: 120px;
  }
  .hero-banner-controls {
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
  }
  .hero-banner-buttons {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .btn-banner-action {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
}

/* Why Choose Nanocheck (6-Icon Carousel Brief) */
.why-choose-section {
  padding-block: 44px 56px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.why-choose-header {
  margin-bottom: 32px;
}

.why-choose-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

.why-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-carousel-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-block: 8px 18px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex: 1;
}

.why-carousel-track::-webkit-scrollbar {
  display: none;
}

.why-item {
  flex: 0 0 210px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-fast);
}

.why-item:hover {
  transform: translateY(-4px);
}

.why-icon-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: var(--color-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(4, 9, 20, 0.28);
  transition: all var(--transition-fast);
}

.why-item:hover .why-icon-circle {
  background-color: var(--color-blue-primary);
  box-shadow: 0 12px 24px rgba(29, 78, 216, 0.32);
  transform: scale(1.05);
}

.why-icon-circle svg {
  width: 44px;
  height: 44px;
}

.why-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
  line-height: 1.35;
}

.why-item-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-slate-600);
  line-height: 1.5;
  max-width: 190px;
}

/* Slider Nav Arrow Buttons */
.why-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #f1f5f9;
  border: 1px solid var(--color-border);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.why-nav-btn:hover {
  background-color: var(--color-navy);
  color: #ffffff;
  transform: scale(1.08);
}

.why-nav-btn svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .why-choose-title {
    font-size: 22px;
  }
  .why-item {
    flex: 0 0 170px;
  }
  .why-icon-circle {
    width: 76px;
    height: 76px;
  }
  .why-icon-circle svg {
    width: 36px;
    height: 36px;
  }
}

/* Trust & Standards Bar */
.trust-bar {
  padding-block: 36px;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-slate-600);
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-slate-700);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-blue-primary);
}

/* Section Common Styles */
.section {
  padding-block: 80px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 52px;
}


.section-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.section-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-slate-600);
  line-height: 1.6;
}

.section-header-left {
  text-align: left;
  max-width: 800px;
  margin-inline: 0;
  margin-bottom: 36px;
}

/* FPT 4-Column Image Solutions Grid */
.fpt-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fpt-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(4, 9, 20, 0.04);
  transition: all var(--transition-normal);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.fpt-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-blue-primary);
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.12);
}

.fpt-card-thumb {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
  background-color: var(--color-slate-100);
}

.fpt-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.fpt-card:hover .fpt-card-thumb img {
  transform: scale(1.06);
}

.fpt-card-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fpt-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.fpt-card-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--color-slate-600);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}

.btn-solution-more {
  background-color: var(--color-navy);
  color: #ffffff;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  text-decoration: none;
  border: 1px solid var(--color-navy);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(4, 9, 20, 0.12);
}

.btn-solution-more:hover,
.fpt-card:hover .btn-solution-more {
  background-color: var(--color-blue-primary);
  border-color: var(--color-blue-primary);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.28);
}

/* Solutions Grid (FPT Software Enterprise Style) */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue-primary), var(--color-blue-accent));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card);
}

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

.solution-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--color-slate-100);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.solution-card:hover .solution-icon-box {
  background: var(--color-blue-light);
  color: var(--color-blue-primary);
}

.solution-icon-box svg {
  width: 24px;
  height: 24px;
}

.solution-card-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.solution-card-desc {
  font-size: 14px;
  color: var(--color-slate-600);
  line-height: 1.5;
  margin-bottom: 24px;
  flex: 1;
}

.solution-card-footer {
  margin-top: auto;
}

/* Products Section (3 Tabs & Pricing Spec Cards) */
.products-tab-section {
  background-color: #f8fafc;
  border-top: 1px solid var(--color-border);
}

.product-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.product-tab-btn {
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 1px 4px rgba(4, 9, 20, 0.04);
}

.product-tab-btn:hover {
  border-color: var(--color-navy);
  color: var(--color-navy);
  background-color: #f8fafc;
}

.product-tab-btn.active {
  background: var(--color-navy);
  color: #ffffff;
  border-color: var(--color-navy);
  box-shadow: 0 4px 14px rgba(4, 9, 20, 0.2);
}

.product-tab-pane {
  display: none;
  animation: fadeIn 0.35s ease;
}

.product-tab-pane.active {
  display: block;
}

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

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prod-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(4, 9, 20, 0.04);
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(4, 9, 20, 0.1);
  border-color: rgba(2, 132, 199, 0.35);
}

.prod-card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background-color: #f1f5f9;
}

.prod-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.prod-card:hover .prod-card-thumb img {
  transform: scale(1.06);
}

.prod-thumb-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(4, 9, 20, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prod-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
  line-height: 1.35;
}

.prod-card-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-slate-600);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Ẩn danh sách tick xanh dài dòng để card gọn gàng, thoáng đãng */
.prod-bullet-list {
  display: none;
}

/* Rút gọn thanh nút bấm thành 1 nút hành động thanh lịch duy nhất */
.prod-card-actions-flat {
  display: flex;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.prod-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.prod-action-btn svg {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

/* Ẩn nút phụ thứ 2, chỉ giữ 1 nút chi tiết tinh tế */
.prod-action-primary {
  display: none;
}

.prod-action-secondary {
  width: 100%;
  background: #f8fafc;
  color: var(--color-navy);
  border: 1px solid #e2e8f0;
}

.prod-action-secondary:hover,
.prod-card:hover .prod-action-secondary {
  background: var(--color-navy);
  color: #ffffff;
  border-color: var(--color-navy);
}

.prod-action-secondary:hover svg,
.prod-card:hover .prod-action-secondary svg {
  transform: translateX(3px);
}

/* Industry Applications (FPT Tall Rounded Cards Carousel Style) */
.industry-section {
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.text-blue-accent {
  color: #0284c7;
}

.industry-carousel-wrapper {
  position: relative;
}

.industry-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
}

.industry-carousel-track::-webkit-scrollbar {
  display: none;
}

.industry-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 180px;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(4, 9, 20, 0.08);
  transition: all var(--transition-normal);
  cursor: pointer;
  scroll-snap-align: start;
  user-select: none;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(4, 9, 20, 0.16);
  border-color: rgba(2, 132, 199, 0.4);
}

.industry-card-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.industry-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover .industry-card-img-wrap img {
  transform: scale(1.08);
}

.industry-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(4, 9, 20, 0.8) 0%, rgba(4, 9, 20, 0.12) 42%, rgba(4, 9, 20, 0.62) 100%);
  pointer-events: none;
}

.industry-card-content {
  position: relative;
  z-index: 2;
  padding: 22px 18px;
}

.industry-card-title {
  font-size: 16.5px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.industry-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.industry-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(4, 9, 20, 0.04);
}

.industry-nav-btn:hover {
  background: var(--color-navy);
  color: #ffffff;
  border-color: var(--color-navy);
  transform: scale(1.05);
}

.industry-nav-btn svg {
  width: 18px;
  height: 18px;
}

/* Sample Library Section (Kho tem mẫu Nanocheck Wireframe) */
.sample-lib-section {
  background-color: #f8fafc;
  border-top: 1px solid var(--color-border);
  padding-block: 84px;
}

.sample-header {
  margin-bottom: 36px;
  text-align: left;
}

.sample-row {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.sample-banner-card {
  flex: 0 0 280px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(4, 9, 20, 0.08);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.sample-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(4, 9, 20, 0.14);
}

.sample-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

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

.sample-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(4, 9, 20, 0.85) 0%, rgba(4, 9, 20, 0.45) 50%, rgba(4, 9, 20, 0.9) 100%);
}

.sample-banner-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
}

.sample-banner-badge {
  display: inline-block;
  width: fit-content;
  font-size: 10.5px;
  font-weight: 500;
  background: #0284c7;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sample-banner-title {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.sample-banner-desc {
  font-size: 13px;
  font-weight: 300;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn-sample-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--color-navy);
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  width: fit-content;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border: 1px solid transparent;
}

.btn-sample-banner:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: translateY(-1px);
}

.sample-slider-wrapper {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.sample-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 16px;
  width: 100%;
  scroll-snap-type: x mandatory;
}

.sample-slider-track::-webkit-scrollbar {
  display: none;
}

.sample-item {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 165px;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.sample-item:hover {
  transform: translateY(-4px);
}

.sample-item-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: #e2e8f0;
  margin-bottom: 12px;
  position: relative;
  box-shadow: 0 6px 18px rgba(4, 9, 20, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.sample-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sample-item:hover .sample-item-thumb img {
  transform: scale(1.08);
}

.sample-item-title {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 4px;
  line-height: 1.35;
}

.sample-item-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--color-slate-600);
  line-height: 1.45;
  margin: 0;
}

.sample-nav-next {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(4, 9, 20, 0.04);
}

.sample-nav-next:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #ffffff;
  transform: scale(1.05);
}

.sample-footer-action {
  text-align: center;
  margin-top: 36px;
}

.btn-sample-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  transition: all var(--transition-fast);
  box-shadow: 0 1px 4px rgba(4, 9, 20, 0.04);
}

.btn-sample-all:hover {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
  color: #ffffff;
  transform: translateY(-1px);
}

/* ============================================================
   Clients Section (Khách hàng của Nanocheck - 2 Rows Static Grid)
   ============================================================ */
.clients-section {
  background-color: #ffffff;
  padding-block: 72px;
  border-top: 1px solid var(--color-border);
}

.clients-header {
  margin-bottom: 32px;
  text-align: left;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
}

.client-logo-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  min-height: 100px;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  cursor: pointer;
}

.client-logo-card:hover {
  transform: translateY(-3px);
  border-color: #0284c7;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.08);
}

.client-logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.client-logo-svg {
  width: 100%;
  height: 34px;
  display: block;
}

.client-logo-sub {
  font-size: 12px;
  font-weight: 300;
  color: #64748b;
  margin-top: 6px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Tech Capabilities (Navy Xanh Đen Highlight Section) */
.navy-tech-section {
  background-color: var(--color-navy);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-block: 84px;
}

.navy-tech-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

.navy-tech-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

.navy-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}


.navy-header .section-title {
  color: #ffffff;
}

.navy-header .section-desc {
  color: #94a3b8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

.stat-item {
  background: rgba(19, 36, 61, 0.7);
  border: 1px solid var(--color-navy-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: transform var(--transition-fast);
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.4);
}

.stat-val {
  font-size: 38px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 30%, var(--color-cyan-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-title {
  font-size: 15px;
  font-weight: 500;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 13px;
  font-weight: 300;
  color: #94a3b8;
  line-height: 1.4;
}

.navy-cta-box {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Standardized Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.process-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.process-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--color-border-hover);
}

.process-step-num {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-blue-primary);
  background: var(--color-blue-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.process-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.process-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-slate-600);
  line-height: 1.5;
}

/* CTA Conversion Banner */
.cta-section {
  padding-block: 70px;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
}

.cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-surface) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.cta-title {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}

.cta-desc {
  font-size: 16px;
  font-weight: 300;
  color: #cbd5e1;
  line-height: 1.5;
}

.cta-actions {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Footer (Deep Navy & Midnight Tech Xanh Đen Style) */
.site-footer {
  background: linear-gradient(180deg, #071526 0%, #040914 100%);
  color: #94a3b8;
  padding-top: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.1fr 1fr 1.35fr;
  gap: 36px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-heading {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  line-height: 1.3;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.45;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-nav a:hover {
  color: #38bdf8;
  transform: translateX(3px);
  text-decoration: none;
}

.footer-col-contact {
  display: flex;
  flex-direction: column;
}

.footer-company-name {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.45;
}

.footer-address {
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 14px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.footer-contact-details p {
  margin: 0;
}

.footer-contact-details a {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-details a:hover {
  color: #38bdf8;
  text-decoration: none;
}

.footer-brand-social {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-sub-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-sub-brand-text {
  display: flex;
  flex-direction: column;
}

.sub-brand-name {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.sub-brand-tagline {
  color: #64748b;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

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

.footer-social-links a {
  color: #94a3b8;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: #38bdf8;
}

.footer-bottom {
  padding-block: 20px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 12.5px;
  font-weight: 300;
  color: #64748b;
}

/* Floating Enquire & Search Action Widget */
.floating-enquire-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-float-search {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0b2545;
  color: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(4, 9, 20, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-float-search:hover {
  transform: scale(1.08);
  background: #0284c7;
  border-color: #38bdf8;
}

.btn-float-enquire {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #040914;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(4, 9, 20, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  transition: all var(--transition-fast);
}

.btn-float-enquire span {
  font-size: 7.5px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 2px;
  text-align: center;
  letter-spacing: -0.02em;
}

.btn-float-enquire:hover {
  transform: scale(1.08);
  background: #0284c7;
  border-color: #38bdf8;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .solutions-grid,
  .fpt-solutions-grid,
  .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-card {
    flex: 0 0 220px;
    height: 360px;
  }
  .sample-row {
    flex-direction: column;
  }
  .sample-banner-card {
    width: 100%;
    flex: none;
    height: 240px;
  }
  .sample-item {
    flex: 0 0 170px;
  }
  .clients-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 36px;
  }
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .solutions-grid,
  .fpt-solutions-grid,
  .product-cards-grid {
    grid-template-columns: 1fr;
  }
  .industry-card {
    flex: 0 0 190px;
    height: 320px;
    border-radius: 18px;
  }
  .industry-carousel-nav {
    justify-content: center;
  }
  .sample-item {
    flex: 0 0 150px;
  }
  .sample-item-thumb {
    border-radius: 18px;
  }
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .client-logo-card {
    padding: 14px 10px;
    min-height: 85px;
  }
  .product-tabs-nav {
    flex-direction: column;
    width: 100%;
  }
  .product-tab-btn {
    width: 100%;
    text-align: center;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ============================================================
   About Page & FPT Case Studies Showcase
   ============================================================ */
.about-hero-section {
  background: linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-content {
  max-width: 780px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.about-hero-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cyan-glow);
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 18px;
}

.about-hero-title {
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.16;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-hero-desc {
  font-size: 16.5px;
  font-weight: 300;
  color: #cbd5e1;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 32px;
  line-height: 1.6;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* FPT Software Style Case Studies Component */
.fpt-case-studies-section {
  background-color: #f8fafc;
  padding: 76px 0 84px;
}

.fpt-case-studies-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #07172c 0%, #040914 100%);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(4, 9, 20, 0.35);
  padding: 48px 48px 0 48px;
}

.fpt-case-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(70px);
  border-radius: 50%;
  z-index: 1;
}

.fpt-case-glow-cyan {
  top: -60px;
  right: 15%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.22) 0%, transparent 70%);
}

.fpt-case-glow-emerald {
  bottom: 60px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16) 0%, transparent 70%);
}

.fpt-case-tab-content {
  position: relative;
  z-index: 2;
}

.fpt-case-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}

.fpt-case-panel.active {
  display: block;
}

.fpt-case-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 44px;
}

.fpt-case-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fpt-case-title {
  font-size: 34px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}

.fpt-case-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 28px;
}

.fpt-case-action {
  display: flex;
  align-items: center;
}

.fpt-case-media {
  width: 100%;
}

.fpt-case-img-wrap {
  width: 100%;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.fpt-case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fpt-case-studies-card:hover .fpt-case-img-wrap img {
  transform: scale(1.04);
}

/* FPT Case Navigation Tabs (Bottom horizontal bar) */
.fpt-case-nav {
  position: relative;
  z-index: 2;
  display: flex;
  width: calc(100% + 96px);
  margin-left: -48px;
  margin-right: -48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fpt-case-nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  background: transparent;
  border: none;
  border-top: 3px solid transparent;
  color: #94a3b8;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.fpt-case-nav-item:last-child {
  border-right: none;
}

.fpt-case-nav-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.fpt-case-nav-item.active {
  color: #ffffff;
  background: rgba(2, 132, 199, 0.14);
  border-top-color: #38bdf8;
}

.fpt-case-nav-label {
  line-height: 1.35;
}

.fpt-case-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform var(--transition-fast);
}

.fpt-case-nav-item:hover .fpt-case-chevron,
.fpt-case-nav-item.active .fpt-case-chevron {
  transform: translateX(4px);
  stroke: #38bdf8;
}

/* Vision & Mission Section */
.about-vm-section {
  background-color: #ffffff;
}

.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-vm-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 4px 16px rgba(4, 9, 20, 0.04);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.about-vm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: 0 12px 28px rgba(4, 9, 20, 0.08);
}

.about-vm-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #eff6ff;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-vm-icon svg {
  width: 28px;
  height: 28px;
}

.about-vm-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-vm-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--color-slate-600);
  line-height: 1.65;
}

/* Core Values Section */
.about-values-section {
  background-color: #f8fafc;
  border-top: 1px solid var(--color-border);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-value-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(4, 9, 20, 0.03);
}

.about-value-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-navy);
  box-shadow: 0 10px 24px rgba(4, 9, 20, 0.08);
}

.about-value-num {
  font-size: 26px;
  font-weight: 500;
  color: #0284c7;
  margin-bottom: 12px;
  opacity: 0.85;
}

.about-value-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.about-value-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--color-slate-600);
  line-height: 1.55;
}

/* Responsive Rules for About Page */
@media (max-width: 992px) {
  .fpt-case-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fpt-case-img-wrap {
    height: 280px;
  }
  .fpt-case-nav {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .fpt-case-nav-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
  }
  .about-vm-grid {
    grid-template-columns: 1fr;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-hero-title {
    font-size: 34px;
  }
  .about-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .about-hero-actions .btn {
    width: 100%;
  }
  .fpt-case-studies-card {
    padding: 28px 20px 0 20px;
    border-radius: 18px;
  }
  .fpt-case-title {
    font-size: 25px;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Services & Industries Page (FPT Software Style)
   ============================================================ */
.services-hero-section {
  background: linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  padding: 88px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-hero-content {
  max-width: 760px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.services-hero-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cyan-glow);
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 18px;
}

.services-hero-title {
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.16;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.services-hero-desc {
  font-size: 16.5px;
  font-weight: 300;
  color: #cbd5e1;
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.6;
}

/* Industries 12-Card Grid */
.industries-grid-section {
  background-color: #ffffff;
  padding-block: 80px;
}

.industries-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-box-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 32px 24px;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(4, 9, 20, 0.03);
  cursor: pointer;
}

.industry-box-card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 132, 199, 0.45);
  box-shadow: 0 14px 30px rgba(4, 9, 20, 0.09);
}

.industry-box-icon {
  width: 44px;
  height: 44px;
  color: var(--color-navy);
  transition: all var(--transition-fast);
}

.industry-box-icon svg {
  width: 100%;
  height: 100%;
}

.industry-box-card:hover .industry-box-icon {
  color: #0284c7;
  transform: scale(1.08);
}

.industry-box-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.35;
  margin-top: 24px;
}

/* Capabilities Showcase Section (FPT Dark Multi-column Style) */
.capabilities-section {
  background-color: var(--color-navy);
  padding: 84px 0 92px;
  position: relative;
  overflow: hidden;
}

.capabilities-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 36px;
}

.capabilities-title {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.capabilities-desc {
  font-size: 15px;
  font-weight: 300;
  color: #94a3b8;
  line-height: 1.6;
}

/* Category Tabs */
.cap-category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.cap-tab-btn {
  font-family: var(--font-base);
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #cbd5e1;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cap-tab-btn:hover {
  border-color: #38bdf8;
  color: #ffffff;
  background: rgba(56, 189, 248, 0.08);
}

.cap-tab-btn.active {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

/* Capabilities Main Card */
.capabilities-card {
  position: relative;
  overflow: hidden;
  background: rgba(9, 22, 40, 0.7);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cap-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(70px);
  border-radius: 50%;
  z-index: 1;
}

.cap-glow-blue {
  top: -40px;
  right: 10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, transparent 70%);
}

.cap-glow-cyan {
  bottom: 20px;
  left: -30px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
}

.cap-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Service Sub-item List */
.cap-service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cap-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cap-item-title {
  font-size: 15px;
  font-weight: 500;
  color: #cbd5e1;
  transition: color var(--transition-fast);
}

.cap-item-badge {
  font-size: 10px;
  font-weight: 500;
  color: #38bdf8;
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
}

.cap-service-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(56, 189, 248, 0.3);
}

.cap-service-item:hover .cap-item-title {
  color: #ffffff;
}

.cap-service-item.active {
  background: rgba(2, 132, 199, 0.22);
  border-color: #38bdf8;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.2);
}

.cap-service-item.active .cap-item-title {
  color: #ffffff;
}

/* Preview Box on the Right */
.cap-preview-box {
  background: rgba(4, 9, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cap-preview-img-wrap {
  width: 100%;
  height: 230px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cap-preview-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cap-preview-box:hover .cap-preview-img-wrap img {
  transform: scale(1.04);
}

.cap-preview-title {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}

.cap-preview-desc {
  font-size: 14px;
  font-weight: 300;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Feature Success Story Section (You Might Like) */
.feature-story-section {
  background-color: #f8fafc;
  padding-block: 80px;
}

.feature-story-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(4, 9, 20, 0.05);
}

.feature-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.feature-story-thumb {
  height: 340px;
  overflow: hidden;
}

.feature-story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-story-card:hover .feature-story-thumb img {
  transform: scale(1.04);
}

.feature-story-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-story-tag {
  font-size: 11px;
  font-weight: 500;
  color: #0284c7;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-story-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.feature-story-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--color-slate-600);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Responsive Rules for Services Page */
@media (max-width: 1024px) {
  .industries-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .feature-story-grid {
    grid-template-columns: 1fr;
  }
  .feature-story-thumb {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .industries-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .industry-box-card {
    padding: 24px 18px;
    min-height: 150px;
  }
  .capabilities-card {
    padding: 24px 18px;
  }
  .feature-story-body {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .services-hero-title {
    font-size: 34px;
  }
  .industries-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PAGE: LIÊN HỆ (CONTACT US - FPT SOFTWARE STYLE)
   ========================================================================== */

/* 1. Contact Hero Banner */
.contact-hero-section {
  position: relative;
  background: linear-gradient(135deg, #040914 0%, #07172c 50%, #0a2540 100%);
  padding: 96px 0 80px 0;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.09) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.contact-hero-container {
  position: relative;
  z-index: 2;
}

.contact-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.contact-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  padding: 4px 14px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contact-hero-title {
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.16;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.contact-hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: #94a3b8;
  line-height: 1.6;
}

/* 2. Contact Touch & Main Form Section */
.contact-touch-section {
  padding: 80px 0;
  background: #f8fafc;
}

.contact-title-highlight {
  color: #0284c7;
}

.contact-inquiry-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 44px 0;
}

.contact-tab-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.contact-tab-btn:hover {
  border-color: #0284c7;
  color: #0284c7;
  background: #f0f9ff;
}

.contact-tab-btn.active {
  background: #040914;
  color: #ffffff;
  border-color: #040914;
  box-shadow: 0 4px 12px rgba(4, 9, 20, 0.16);
}

.contact-main-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  padding: 44px;
}

/* Left Column: Trust */
.contact-trust-col {
  display: flex;
  flex-direction: column;
}

.contact-trust-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  aspect-ratio: 4 / 3;
  background: #f1f5f9;
}

.contact-trust-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-trust-body {
  padding-top: 24px;
}

.contact-trust-heading {
  font-size: 19px;
  font-weight: 500;
  color: #040914;
  margin-bottom: 16px;
  line-height: 1.3;
}

.contact-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-check-icon svg {
  width: 13px;
  height: 13px;
}

.contact-trust-text {
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  line-height: 1.5;
}

/* Right Column: Form */
.contact-form-col {
  display: flex;
  flex-direction: column;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 6px;
}

.form-label .required {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 11px 15px;
  font-size: 14px;
  font-weight: 400;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.form-textarea {
  resize: vertical;
  min-height: 96px;
}

.form-consent-group {
  margin: 6px 0 22px 0;
}

.consent-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  cursor: pointer;
  line-height: 1.45;
}

.consent-checkbox-wrap input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #0284c7;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-contact-submit {
  width: 100%;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  background: #040914;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.btn-contact-submit:hover {
  background: #0284c7;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.28);
}

.btn-contact-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.contact-form-notice {
  margin-top: 18px;
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  animation: fadeIn 0.3s ease;
}

.notice-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.notice-icon {
  width: 26px;
  height: 26px;
  color: #16a34a;
  flex-shrink: 0;
}

.notice-title {
  font-size: 15px;
  font-weight: 500;
  color: #166534;
  margin: 0;
}

.notice-desc {
  font-size: 13px;
  font-weight: 400;
  color: #15803d;
  margin-top: 2px;
}

/* 3. General Contact Information Section */
.contact-general-section {
  padding: 84px 0;
  background: #ffffff;
}

.contact-dept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.contact-dept-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.28s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.02);
}

.contact-dept-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.08);
}

.dept-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.dept-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dept-icon-box svg {
  width: 24px;
  height: 24px;
}

.dept-title {
  font-size: 18px;
  font-weight: 500;
  color: #040914;
  margin: 0;
  line-height: 1.3;
}

.dept-subtitle {
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  display: block;
  margin-top: 3px;
}

.dept-card-body {
  margin-bottom: 20px;
}

.dept-contact-line {
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dept-label {
  font-weight: 500;
  color: #334155;
}

.dept-link {
  color: #0284c7;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.dept-link:hover {
  text-decoration: underline;
  color: #0369a1;
}

.dept-card-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.btn-dept-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: #040914;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-dept-action svg {
  transition: transform 0.2s ease;
}

.btn-dept-action:hover {
  color: #0284c7;
}

.btn-dept-action:hover svg {
  transform: translateX(4px);
}

/* 4. Headquarter Section */
.contact-hq-section {
  padding: 0 0 90px 0;
  background: #ffffff;
}

.hq-dark-card {
  background: linear-gradient(135deg, #07172c 0%, #040914 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 40px rgba(4, 9, 20, 0.25);
}

.hq-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hq-title {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 28px;
  line-height: 1.25;
}

.hq-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.hq-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hq-icon-box svg {
  width: 22px;
  height: 22px;
}

.hq-item-label {
  font-size: 15px;
  font-weight: 500;
  color: #f1f5f9;
  margin: 0 0 4px 0;
}

.hq-item-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0;
}

.hq-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.hq-image-frame {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

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

.hq-ambient-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(4, 9, 20, 0.1) 0%, rgba(4, 9, 20, 0.4) 100%);
  pointer-events: none;
}

/* Responsive Rules for Contact Page */
@media (max-width: 1024px) {
  .contact-main-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-trust-col {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .hq-dark-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .contact-dept-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-main-card {
    padding: 28px 20px;
  }
  .hq-dark-card {
    padding: 32px 20px;
  }
  .contact-hero-title {
    font-size: 36px;
  }
}

/* ==========================================================================
   PAGE: CHI TIẾT DỊCH VỤ (SINGLE SERVICE - NANOCHECK DETAIL)
   ========================================================================== */

/* 1. Hero Banner Dịch Vụ */
.single-service-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.service-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(4, 9, 20, 0.94) 0%, rgba(4, 9, 20, 0.82) 48%, rgba(4, 9, 20, 0.6) 100%);
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  padding: 84px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.service-hero-left {
  max-width: 660px;
}

.service-hero-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 500;
  color: #38bdf8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-hero-title {
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.service-highlight-cyan {
  color: #38bdf8;
}

.service-hero-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: #cbd5e1;
  line-height: 1.6;
}

.service-hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.service-slogan-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.service-slogan-text {
  font-size: 26px;
  font-weight: 400;
  color: #f1f5f9;
  font-style: italic;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.btn-service-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.btn-service-video:hover {
  background: #0284c7;
  border-color: #0284c7;
  transform: translateY(-2px);
}

.video-play-pulse {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #38bdf8;
  color: #040914;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 2. Gallery Mẫu Tem */
.service-gallery-section {
  padding: 60px 0 70px 0;
  background: #ffffff;
}

.service-gallery-header {
  margin-bottom: 24px;
}

.service-gallery-title {
  font-size: 15px;
  font-weight: 500;
  color: #040914;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.gallery-item-card {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: all 0.28s ease;
}

.gallery-item-card:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.12);
}

.gallery-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item-card:hover .gallery-thumb-img {
  transform: scale(1.06);
}

/* 3. Alternating Left / Right Sections */
.service-sections-wrap {
  padding: 40px 0 90px 0;
  background: #ffffff;
}

.service-row-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 84px;
}

.service-row-item:last-child {
  margin-bottom: 0;
}

.service-col-media {
  position: relative;
}

.service-media-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
  aspect-ratio: 4 / 3;
  background: #f1f5f9;
}

.service-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-media-frame:hover .service-media-img {
  transform: scale(1.03);
}

.service-col-content {
  position: relative;
  padding: 20px 0;
}

.service-watermark-num {
  font-size: 88px;
  font-weight: 500;
  color: rgba(2, 132, 199, 0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -12px;
  pointer-events: none;
  user-select: none;
}

.service-sec-badge {
  font-size: 11.5px;
  font-weight: 500;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 12px;
}

.service-sec-title {
  font-size: 32px;
  font-weight: 500;
  color: #040914;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.service-sec-desc {
  font-size: 15px;
  font-weight: 300;
  color: #475569;
  line-height: 1.7;
}

/* 4. Tin Tức Mới Nhất */
.service-news-section {
  padding: 70px 0 90px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.service-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.service-news-title {
  font-size: 16px;
  font-weight: 500;
  color: #040914;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.service-news-more {
  font-size: 14px;
  font-weight: 500;
  color: #040914;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-news-more:hover {
  color: #0284c7;
}

.service-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.service-news-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.08);
}

.news-card-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e2e8f0;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-news-card:hover .news-card-thumb img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 20px 22px;
}

.news-date {
  font-size: 12.5px;
  font-weight: 300;
  color: #94a3b8;
  display: block;
  margin-bottom: 8px;
}

.news-card-title {
  font-size: 16px;
  font-weight: 500;
  color: #040914;
  line-height: 1.45;
  margin: 0;
}

/* 5. Video Modal */
.service-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 9, 20, 0.88);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 880px;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.video-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive Rules for Single Service Page */
@media (max-width: 1024px) {
  .service-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .service-slogan-box {
    align-items: flex-start;
  }
  .service-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-row-item {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-row-item.pos-right .service-col-content {
    order: 2;
  }
  .service-row-item.pos-right .service-col-media {
    order: 1;
  }
}

@media (max-width: 768px) {
  .service-hero-title {
    font-size: 30px;
  }
  .service-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-sec-title {
    font-size: 24px;
  }
  .service-watermark-num {
    font-size: 64px;
  }
}

/* ==========================================================================
   PRODUCT HIERARCHY & TAXONOMY (DANH MỤC & DANH MỤC CON)
   ========================================================================== */

/* Breadcrumbs Bar */
.product-breadcrumb-bar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 13px 0;
  font-size: 13px;
  color: #64748b;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb-inner a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-inner a:hover {
  color: #0284c7;
}

.breadcrumb-inner .sep {
  color: #cbd5e1;
}

.breadcrumb-inner .current {
  color: #040914;
  font-weight: 500;
}

/* Cấp 1 & Cấp 2 Category Heroes */
.cat-parent-hero,
.cat-sub-hero {
  position: relative;
  background: linear-gradient(135deg, #040914 0%, #07172c 50%, #0b2545 100%);
  padding: 64px 0;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cat-parent-hero-inner {
  max-width: 700px;
}

.cat-sub-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cat-sub-hero-content {
  max-width: 680px;
}

.cat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  padding: 3px 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cat-hero-title {
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.cat-hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: #94a3b8;
  line-height: 1.6;
}

.slogan-badge {
  font-size: 20px;
  font-style: italic;
  color: #f1f5f9;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Cấp 1: Subcategories Grid */
.cat-subcategories-section {
  padding: 64px 0 80px 0;
  background: #ffffff;
}

.subcategories-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.subcat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.28s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
}

.subcat-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.08);
}

.subcat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.subcat-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subcat-icon-circle svg {
  width: 22px;
  height: 22px;
}

.subcat-count-badge {
  font-size: 12px;
  font-weight: 500;
  color: #0284c7;
  background: #e0f2fe;
  padding: 3px 10px;
  border-radius: 20px;
}

.subcat-title {
  font-size: 19px;
  font-weight: 500;
  color: #040914;
  margin: 0 0 8px 0;
}

.subcat-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 20px;
}

.btn-subcat-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: #040914;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-subcat-view:hover {
  color: #0284c7;
}

/* Cấp 2: Summary Highlights */
.subcat-summary-section {
  padding: 40px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.subcat-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
}

.mini-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f0f9ff;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.mini-title {
  font-size: 14px;
  font-weight: 500;
  color: #040914;
  margin: 0 0 2px 0;
}

.mini-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: #64748b;
  margin: 0;
}

/* Cấp 2: Products List Grid */
.subcat-products-list-section {
  padding: 60px 0 80px 0;
  background: #ffffff;
}

.section-header-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.product-count-label {
  font-size: 13.5px;
  font-weight: 500;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 6px 14px;
  border-radius: 20px;
}

.subcat-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-list-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-list-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.08);
}

.product-card-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}

.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-list-card:hover .product-card-thumb img {
  transform: scale(1.04);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(4, 9, 20, 0.85);
  color: #38bdf8;
  font-size: 10.5px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.product-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 18px;
  font-weight: 500;
  color: #040914;
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.product-card-excerpt {
  font-size: 13.5px;
  font-weight: 300;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 14px;
}

.product-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #475569;
}

.product-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card-features .check-icon {
  width: 15px;
  height: 15px;
  color: #16a34a;
  flex-shrink: 0;
}

.product-card-footer {
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.btn-product-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #040914;
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.22s ease;
}

.btn-product-detail:hover {
  background: #0284c7;
}

/* Cấp 2: Consultation Box */
.subcat-cta-section {
  padding: 0 0 80px 0;
  background: #ffffff;
}

.subcat-cta-box {
  background: linear-gradient(135deg, #07172c 0%, #040914 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 36px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta-title {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.cta-desc {
  font-size: 14px;
  font-weight: 300;
  color: #94a3b8;
  margin: 0;
}

/* ==========================================================================
   NEWS & CATEGORIES (TIN TỨC, PHÁP LUẬT, KIẾN THỨC)
   ========================================================================== */

.news-archive-section {
  padding: 44px 0 84px 0;
  background: #ffffff;
}

/* Toolbar: Tabs & Search Box */
.news-toolbar-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.news-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-tab-item {
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.22s ease;
}

.news-tab-item:hover {
  border-color: #0284c7;
  color: #0284c7;
  background: #f0f9ff;
}

.news-tab-item.active {
  background: #040914;
  color: #ffffff;
  border-color: #040914;
}

.news-search-wrap {
  display: flex;
  align-items: center;
}

.news-search-form {
  display: flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
  width: 260px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-search-form:focus-within {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.news-search-input {
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 13.5px;
  font-family: inherit;
  color: #0f172a;
  width: 100%;
}

.news-search-btn {
  background: transparent;
  border: none;
  padding: 0 12px;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.news-search-btn:hover {
  color: #0284c7;
}

/* 3-Column Post Grid (12 Items per Page) */
.news-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.news-grid-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
  transition: all 0.28s ease;
  display: flex;
  flex-direction: column;
}

.news-grid-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.08);
}

.news-card-thumb-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f1f5f9;
}

.news-grid-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-grid-card:hover .news-grid-thumb-img {
  transform: scale(1.04);
}

.news-grid-card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-grid-card-title {
  font-size: 17px;
  font-weight: 500;
  color: #040914;
  line-height: 1.38;
  margin: 0 0 10px 0;
}

.news-grid-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.news-grid-card-title a:hover {
  color: #0284c7;
}

.news-grid-card-excerpt {
  font-size: 13.5px;
  font-weight: 300;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 16px 0;
  flex: 1;
}

.news-grid-card-meta {
  display: flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 400;
  color: #94a3b8;
}

.news-meta-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calendar-icon {
  width: 14px;
  height: 14px;
  color: #94a3b8;
}

/* Pagination Bar */
.news-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.news-pagination-wrap .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.news-pagination-wrap .page-numbers:hover {
  border-color: #0284c7;
  color: #0284c7;
  background: #f0f9ff;
}

.news-pagination-wrap .page-numbers.current {
  background: #040914;
  color: #ffffff;
  border-color: #040914;
}

.news-pagination-wrap .page-numbers.dots {
  border: none;
  background: transparent;
  color: #94a3b8;
}

/* Single Post Layout */
.single-post-article {
  padding: 44px 0 64px 0;
  background: #ffffff;
}

.single-post-header {
  margin-bottom: 28px;
}

.post-cat-badge {
  font-size: 11px;
  font-weight: 500;
  color: #0284c7;
  background: #e0f2fe;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 12px;
}

.single-post-title {
  font-size: 34px;
  font-weight: 500;
  color: #040914;
  line-height: 1.28;
  margin-bottom: 14px;
}

.single-post-meta {
  display: flex;
  gap: 20px;
  font-size: 13.5px;
  color: #64748b;
  font-weight: 400;
}

.post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.single-post-featured-media {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.single-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-post-content {
  font-size: 16px;
  font-weight: 400;
  color: #334155;
  line-height: 1.85;
}

.related-posts-section {
  background: #f8fafc;
  padding: 60px 0 80px 0;
  border-top: 1px solid #e2e8f0;
}

.related-posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.related-title {
  font-size: 20px;
  font-weight: 500;
  color: #040914;
  margin: 0;
}

.btn-more-articles {
  font-size: 13.5px;
  font-weight: 500;
  color: #0284c7;
  text-decoration: none;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-post-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.related-post-card:hover {
  transform: translateY(-3px);
  border-color: #38bdf8;
}

.related-thumb-link {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.related-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body {
  padding: 16px;
}

.related-date {
  font-size: 12px;
  font-weight: 300;
  color: #94a3b8;
  display: block;
  margin-bottom: 6px;
}

.related-card-title {
  font-size: 15px;
  font-weight: 500;
  color: #040914;
  line-height: 1.4;
  margin: 0;
}

.related-card-title a {
  color: inherit;
  text-decoration: none;
}

/* Responsive Rules for Products & News */
@media (max-width: 1024px) {
  .subcategories-cards-grid,
  .subcat-products-grid,
  .news-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .subcat-highlights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-toolbar-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .news-search-form {
    width: 100%;
  }
  .subcategories-cards-grid,
  .subcat-products-grid,
  .news-cards-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  .subcat-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
}

/* ==========================================================================
   ABOUT SECTION PAGES (VỀ NANOCHECK, HỒ SƠ NĂNG LỰC, NĂNG LỰC SX, QUY TRÌNH)
   ========================================================================== */

/* Header Dropdown Menu */
.nav-links .menu-item-has-children {
  position: relative;
}

.nav-links .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.nav-links .menu-item-has-children:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(4, 9, 20, 0.12);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s ease;
  z-index: 1000;
}

.nav-links .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links .sub-menu li a:hover {
  background: #f0f9ff;
  color: #0284c7;
  padding-left: 22px;
}

/* Sub-navigation Bar for About Section */
.about-subnav-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 70px;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.about-subnav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
}

.about-subnav-item a {
  display: inline-block;
  padding: 16px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.about-subnav-item a:hover {
  color: #0284c7;
}

.about-subnav-item.active a {
  color: #040914;
}

.about-subnav-item.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: #0284c7;
  border-radius: 3px 3px 0 0;
}

/* About Shared Hero Banner */
.about-hero-section {
  position: relative;
  background: linear-gradient(135deg, #040914 0%, #07172c 50%, #0b2545 100%);
  padding: 80px 0 74px 0;
  text-align: center;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.about-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  padding: 4px 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-hero-title {
  font-size: 42px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.about-hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* Certifications Grid */
.about-content-section {
  padding: 70px 0 84px 0;
  background: #ffffff;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cert-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.28s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
}

.cert-card:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.08);
}

.cert-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cert-icon-box svg {
  width: 26px;
  height: 26px;
}

.cert-code {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #0284c7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cert-title {
  font-size: 17px;
  font-weight: 500;
  color: #040914;
  margin: 0 0 8px 0;
}

.cert-desc {
  font-size: 13px;
  font-weight: 300;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Core Tech Pillars */
.about-pillars-section {
  padding: 64px 0 80px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.core-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.tech-pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.28s ease;
}

.tech-pillar-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.08);
}

.pillar-num {
  font-size: 32px;
  font-weight: 500;
  color: rgba(2, 132, 199, 0.35);
  margin-bottom: 12px;
}

.pillar-title {
  font-size: 19px;
  font-weight: 500;
  color: #040914;
  margin: 0 0 10px 0;
}

.pillar-desc {
  font-size: 14px;
  font-weight: 300;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Download Profile CTA Card */
.about-cta-section {
  padding: 70px 0 90px 0;
  background: #ffffff;
}

.about-download-card {
  background: linear-gradient(135deg, #07172c 0%, #040914 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  box-shadow: 0 16px 40px rgba(4, 9, 20, 0.25);
}

.download-card-body {
  padding: 48px;
}

.download-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #38bdf8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.download-title {
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.download-desc {
  font-size: 15px;
  font-weight: 300;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.download-actions {
  display: flex;
  gap: 14px;
}

.download-card-media {
  height: 100%;
  min-height: 320px;
}

.download-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Manufacturing Metrics */
.about-metrics-section {
  padding: 60px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.metrics-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
}

.metric-value {
  font-size: 36px;
  font-weight: 500;
  color: #0284c7;
  line-height: 1.15;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  font-weight: 500;
  color: #040914;
  margin-bottom: 6px;
}

.metric-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Machinery Cards Grid */
.machinery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.machinery-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
  transition: all 0.28s ease;
}

.machinery-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.08);
}

.machinery-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}

.machinery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.machinery-card:hover .machinery-media img {
  transform: scale(1.04);
}

.machinery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(4, 9, 20, 0.85);
  color: #38bdf8;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.machinery-body {
  padding: 24px;
}

.machinery-title {
  font-size: 19px;
  font-weight: 500;
  color: #040914;
  margin: 0 0 8px 0;
}

.machinery-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* QA/QC Steps Grid */
.about-qaqc-section {
  padding: 64px 0 80px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.qaqc-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.qaqc-step-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
}

.step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-title {
  font-size: 15px;
  font-weight: 500;
  color: #040914;
  margin: 0 0 6px 0;
}

.step-desc {
  font-size: 13px;
  font-weight: 300;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Workflow Timeline */
.about-process-section {
  padding: 70px 0 84px 0;
  background: #ffffff;
}

.process-timeline-list {
  max-width: 820px;
  margin: 44px auto 0 auto;
}

.process-step-item {
  display: flex;
  gap: 24px;
  position: relative;
}

.step-badge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 52px;
  flex-shrink: 0;
}

.step-num-bubble {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #040914;
  color: #ffffff;
  border: 2px solid #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 500;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(4, 9, 20, 0.2);
}

.step-connector-line {
  width: 2px;
  flex: 1;
  background: #e2e8f0;
  margin: 8px 0;
}

.step-content-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 28px;
  flex: 1;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.02);
  transition: all 0.25s ease;
}

.step-content-card:hover {
  border-color: #38bdf8;
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.08);
}

.step-tag {
  font-size: 11px;
  font-weight: 500;
  color: #0284c7;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

.step-name {
  font-size: 18px;
  font-weight: 500;
  color: #040914;
  margin: 0 0 8px 0;
}

.step-description {
  font-size: 14px;
  font-weight: 300;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Commitments Grid */
.about-commitments-section {
  padding: 64px 0 80px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.commit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.commit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.commit-icon svg {
  width: 24px;
  height: 24px;
}

.commit-title {
  font-size: 17px;
  font-weight: 500;
  color: #040914;
  margin: 0 0 8px 0;
}

.commit-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Responsive Rules for About Section */
@media (max-width: 1024px) {
  .certifications-grid,
  .metrics-grid-4,
  .qaqc-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-download-card {
    grid-template-columns: 1fr;
  }
  .download-card-media {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .certifications-grid,
  .core-tech-grid,
  .metrics-grid-4,
  .machinery-grid,
  .qaqc-steps-grid,
  .commitments-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-title {
    font-size: 32px;
  }
  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .download-card-body {
    padding: 32px 24px;
  }
  .process-step-item {
    gap: 16px;
  }
}

/* Legal Entity Profile Card */
.legal-entity-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 32px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.legal-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.legal-company-title {
  font-size: 24px;
  font-weight: 500;
  color: #040914;
  margin: 0 0 6px 0;
  line-height: 1.35;
}

.legal-company-intl {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  margin: 0 0 24px 0;
}

.legal-entity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
}

.legal-grid-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-item-label {
  font-size: 12px;
  font-weight: 400;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-item-val {
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.45;
}

.footer-company-sub {
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
  margin: 4px 0 8px 0;
  line-height: 1.4;
}

.footer-tax-id {
  font-size: 12px;
  font-weight: 400;
  color: #38bdf8;
  margin: 0 0 10px 0;
}

@media (max-width: 768px) {
  .legal-entity-card {
    padding: 24px 18px;
  }
  .legal-entity-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   SOLUTIONS (GIẢI PHÁP) SECTION STYLES
   ========================================================================== */

/* Solutions Hero */
.solution-hero-section {
  background: linear-gradient(135deg, #040914 0%, #061527 50%, #0b192c 100%);
  color: #ffffff;
  padding: 80px 0 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solution-hero-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.solution-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #38bdf8;
  background: rgba(2, 132, 199, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.solution-hero-title {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
  color: #ffffff;
  line-height: 1.25;
}

.solution-hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: #94a3b8;
  max-width: 580px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.solution-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Solutions Sub-Navigation Bar */
.solution-subnav-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 70px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.solution-subnav-container {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.solution-subnav-container::-webkit-scrollbar {
  display: none;
}

.solution-subnav-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #0284c7;
  letter-spacing: 0.08em;
  padding: 14px 18px 14px 0;
  border-right: 1px solid #e2e8f0;
  margin-right: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.solution-subnav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.solution-subnav-item {
  flex-shrink: 0;
}

.solution-subnav-link {
  display: block;
  padding: 14px 14px;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.solution-subnav-item.active .solution-subnav-link,
.solution-subnav-link:hover {
  color: #0284c7;
  border-bottom-color: #0284c7;
}

/* Solution Matrix Grid */
.solution-matrix-section {
  padding: 70px 0;
  background: #f8fafc;
}

.solution-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.solution-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.28s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.02);
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
  box-shadow: 0 16px 32px rgba(2, 132, 199, 0.08);
}

.solution-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.solution-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-card-icon svg {
  width: 24px;
  height: 24px;
}

.solution-card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 3px 10px;
  border-radius: 4px;
}

.solution-card-title {
  font-size: 20px;
  font-weight: 500;
  color: #040914;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.solution-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.solution-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-card-features li {
  font-size: 13px;
  font-weight: 400;
  color: #334155;
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
}

.solution-card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0284c7;
}

.solution-card-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
}

.btn-solution-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #0284c7;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.btn-solution-detail:hover {
  color: #0369a1;
  gap: 10px;
}

/* Solutions Architecture Workflow */
.solution-architecture-section {
  padding: 80px 0;
  background: #ffffff;
}

.architecture-flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.flow-step-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s ease;
}

.flow-step-card:hover {
  background: #ffffff;
  border-color: #38bdf8;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.06);
}

.flow-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0284c7;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.flow-step-title {
  font-size: 16px;
  font-weight: 500;
  color: #040914;
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.flow-step-desc {
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.flow-arrow-icon {
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Solutions */
@media (max-width: 1024px) {
  .solution-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .architecture-flow-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .flow-arrow-icon {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .solution-matrix-grid {
    grid-template-columns: 1fr;
  }
  .solution-hero-title {
    font-size: 32px;
  }
  .solution-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==========================================================================
   PIXEL-PERFECT SHOWCASE TEMPLATE (GIẢI PHÁP & ỨNG DỤNG NGÀNH)
   ========================================================================== */

/* 1. Hero Banner */
.mockup-hero-section {
  background: linear-gradient(135deg, #030813 0%, #061527 55%, #0a1b33 100%);
  color: #ffffff;
  padding: 68px 0 54px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.mockup-hero-left {
  max-width: 640px;
}

.mockup-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #38bdf8;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mockup-hero-title {
  font-size: 38px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 14px 0;
  text-transform: uppercase;
}

.mockup-cyan-text {
  color: #00a2ed;
}

.mockup-hero-subtitle {
  font-size: 14.5px;
  font-weight: 300;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

/* 3 Benefit Pills */
.mockup-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.mockup-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 30px;
}

.mockup-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-pill-text {
  font-size: 12.5px;
  font-weight: 400;
  color: #e2e8f0;
  white-space: nowrap;
}

/* Action Buttons */
.mockup-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-mockup-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00a2ed;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 162, 237, 0.35);
}

.btn-mockup-primary:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 162, 237, 0.45);
}

.btn-mockup-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 400;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s ease;
  font-family: inherit;
}

.btn-mockup-play:hover {
  color: #38bdf8;
}

.mockup-play-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0284c7;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(2, 132, 199, 0.5);
  transition: transform 0.2s ease;
}

.btn-mockup-play:hover .mockup-play-icon {
  transform: scale(1.1);
}

/* Hero Right Visual */
.mockup-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.mockup-slogan-cursive {
  font-family: 'Caveat', cursive, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  line-height: 1.2;
}

.mockup-device-frame {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mockup-device-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 2. Gallery Section */
.mockup-gallery-section {
  padding: 44px 0 54px 0;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.mockup-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mockup-gallery-title {
  font-size: 19px;
  font-weight: 500;
  color: #040914;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.mockup-gallery-nav {
  display: flex;
  gap: 8px;
}

.mockup-arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mockup-arrow-btn:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
}

.mockup-gallery-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.mockup-gallery-track::-webkit-scrollbar {
  display: none;
}

.mockup-gallery-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mockup-gallery-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.15);
}

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

/* 3. Alternating Sections */
.mockup-sections-wrap {
  padding: 70px 0 40px 0;
  background: #f8fafc;
}

.mockup-row-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  margin-bottom: 90px;
}

.mockup-row-item:last-child {
  margin-bottom: 40px;
}

.mockup-col-media {
  width: 100%;
}

.mockup-media-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-row-item:hover .mockup-media-frame {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.mockup-media-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.mockup-col-content {
  position: relative;
  padding: 10px 0;
}

.mockup-watermark-num {
  position: absolute;
  top: -28px;
  right: 0;
  font-size: 88px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
}

.mockup-sec-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: #0284c7;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mockup-sec-title {
  font-size: 28px;
  font-weight: 500;
  color: #040914;
  line-height: 1.32;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}

.mockup-sec-desc {
  font-size: 15px;
  font-weight: 400;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

.mockup-sec-desc p {
  margin: 0 0 14px 0;
  line-height: 1.75;
}

.mockup-sec-desc p:last-child {
  margin-bottom: 0;
}

/* 4. News Section */
.mockup-news-section {
  padding: 60px 0 80px 0;
  background: #ffffff;
}

.mockup-news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mockup-news-badge {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #0284c7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mockup-news-title {
  font-size: 24px;
  font-weight: 500;
  color: #040914;
  margin: 0;
}

.mockup-news-viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #0284c7;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.mockup-news-viewall:hover {
  color: #0369a1;
  gap: 10px;
}

.mockup-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mockup-news-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.mockup-news-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.08);
}

.mockup-news-thumb {
  height: 190px;
  overflow: hidden;
}

.mockup-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mockup-news-card:hover .mockup-news-thumb img {
  transform: scale(1.04);
}

.mockup-news-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.mockup-news-date {
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
  margin-bottom: 8px;
}

.mockup-news-item-title {
  font-size: 15px;
  font-weight: 500;
  color: #040914;
  line-height: 1.45;
  margin: 0 0 16px 0;
}

.mockup-news-item-title a {
  color: #040914;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mockup-news-item-title a:hover {
  color: #0284c7;
}

.mockup-news-thumb-link {
  display: block;
  text-decoration: none;
}

.mockup-news-arrow {
  margin-top: auto;
  align-self: flex-end;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.mockup-news-card:hover .mockup-news-arrow {
  transform: translateX(4px);
}

/* Responsive Rules for Mockup Layout */
@media (max-width: 1024px) {
  .mockup-hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mockup-hero-right {
    align-items: center;
  }
  .mockup-gallery-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .mockup-row-item {
    gap: 36px;
  }
  .mockup-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mockup-hero-title {
    font-size: 28px;
  }
  .mockup-gallery-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .mockup-row-item {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
  .mockup-row-item.pos-right .mockup-col-media {
    order: -1;
  }
  .mockup-media-img {
    height: 240px;
  }
  .mockup-watermark-num {
    font-size: 64px;
    top: -16px;
  }
  .mockup-news-grid {
    grid-template-columns: 1fr;
  }
}
