/* ===================================================================
   GYKJ GROUP (上海高鹰科技) - Modern Corporate Stylesheet
   Designed for High-Tech Nuclear Physics & E-Beam Irradiation
   Clean Enterprise White Theme (白色底色与高科技蓝绿主题)
   Fully Responsive (Mobile, Tablet, Desktop)
   =================================================================== */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --border-light: #e2e8f0;
  --border-dark: #cbd5e1;
  --border-glow: rgba(0, 102, 255, 0.25);
  --border-emerald: rgba(16, 185, 129, 0.3);

  --accent-cyan: #0284c7;
  --accent-blue: #0066ff;
  --accent-blue-hover: #0052cc;
  --accent-emerald: #10b981;
  --accent-gold: #d97706;
  --accent-rose: #e11d48;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 4px 20px rgba(0, 102, 255, 0.12);
  --shadow-emerald-glow: 0 4px 20px rgba(16, 185, 129, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: var(--text-primary);
  line-height: 1.65;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

/* Subtle Ambient Glows for Clean White Canvas */
body::before {
  content: "";
  position: fixed;
  top: -10vw;
  left: 20%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.035) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  bottom: 10%;
  right: -5vw;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.025) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -2;
  pointer-events: none;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Common Styling */
section {
  padding: 5.5rem 0;
  position: relative;
  background-color: #ffffff;
}

.section-alt {
  background-color: #f8fafc;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: var(--radius-full);
  color: #0066ff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-title .highlight {
  background: linear-gradient(135deg, #0066ff 0%, #0284c7 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
}

/* ===================================================================
   Header & Navigation
   =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom-color: rgba(0, 102, 255, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo img, .brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

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

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.5px;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.brand-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.96rem;
  font-weight: 600;
  color: #475569;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #0066ff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #0066ff, #10b981);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.35rem;
  background: linear-gradient(135deg, #0066ff 0%, #0284c7 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.28);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
  filter: brightness(1.05);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #0f172a;
  font-size: 1.5rem;
  z-index: 1001;
}

/* ===================================================================
   Hero Section with Particles
   =================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 4rem;
  overflow: hidden;
  background: radial-gradient(circle at 65% 28%, rgba(0, 102, 255, 0.08) 0%, rgba(240, 249, 255, 0.6) 45%, #ffffff 80%);
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-full);
  color: #059669;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: pulse-border 2.5s infinite;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -1px;
  color: #0f172a;
  margin-bottom: 1.4rem;
}

.hero-title span {
  background: linear-gradient(135deg, #0066ff 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.12rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2.2rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  background: linear-gradient(135deg, #0066ff 0%, #0284c7 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.28);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.4);
  color: #ffffff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #0066ff;
  color: #0066ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.12);
}

/* Quick Metrics Row */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1.8rem;
}

.metric-item .val {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  font-family: var(--font-sans);
}

.metric-item .val .unit {
  font-size: 1rem;
  font-weight: 600;
  color: #0066ff;
  margin-left: 2px;
}

.metric-item .lbl {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.2rem;
}

/* Hero Visual Card / Interactive Display */
.hero-visual {
  position: relative;
}

.hero-main-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 25px rgba(0, 102, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.8rem;
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0066ff;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse-dot 1.8s infinite;
}

.hero-card-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.hero-card-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-main-card:hover .hero-card-img-wrap img {
  transform: scale(1.04);
}

.hero-card-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.spec-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
}

.spec-pill .k {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.spec-pill .v {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

/* Floating Status Pills */
.floating-pill {
  position: absolute;
  padding: 0.7rem 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
}

.floating-pill-1 {
  top: -15px;
  right: -15px;
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #059669;
}

.floating-pill-2 {
  bottom: -20px;
  left: -20px;
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: #0066ff;
}

/* ===================================================================
   Qualifications / Trust Badges Bar
   =================================================================== */
.trust-bar {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 2.2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
}

.trust-item:hover {
  background: #ffffff;
  border-color: #0066ff;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.1);
  transform: translateY(-2px);
}

.trust-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.trust-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.trust-meta p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
}

/* ===================================================================
   Technology & 3-Way Comparison Matrix
   =================================================================== */
.tech-schematic-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.tech-schematic-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.adv-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0066ff, #10b981);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.adv-card:hover {
  transform: translateY(-5px);
  border-color: #0066ff;
  background: #ffffff;
  box-shadow: 0 12px 25px rgba(0, 102, 255, 0.08);
}

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

.adv-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0066ff;
  margin-bottom: 1.2rem;
}

.adv-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.adv-card p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
}

/* Comparison Table */
.comparison-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow-x: auto;
}

.comparison-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.comparison-box p {
  color: #64748b;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.table-responsive::-webkit-scrollbar {
  height: 6px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 680px;
}

.comp-table th, .comp-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.92rem;
}

.comp-table th {
  background: #f8fafc;
  font-weight: 700;
  color: #475569;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.comp-table th.col-ebeam {
  background: #eff6ff;
  color: #0066ff;
  font-weight: 800;
  border-top-left-radius: var(--radius-sm);
  border-top-right-radius: var(--radius-sm);
}

.comp-table td.col-ebeam {
  background: #f0f7ff;
  color: #0f172a;
  font-weight: 600;
  border-left: 1px solid #bfdbfe;
  border-right: 1px solid #bfdbfe;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-table tr:hover td {
  background: #f8fafc;
}

.comp-table tr:hover td.col-ebeam {
  background: #e0f2fe;
}

/* Mobile Comparison Controls & Cards (Dual-Mode UX) */
.mobile-comp-controls {
  display: none;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.m-view-switcher {
  display: inline-flex;
  background: #f1f5f9;
  padding: 0.25rem;
  border-radius: var(--radius-full);
  border: 1px solid #e2e8f0;
  gap: 0.25rem;
}

.m-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.m-view-btn.active {
  background: #ffffff;
  color: #0066ff;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.15);
}

.mobile-table-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
  margin-bottom: 0.9rem;
  text-align: center;
  animation: pulse-border 3s infinite;
}

.mobile-comp-cards {
  display: none;
  flex-direction: column;
  gap: 1.1rem;
}

.mobile-comp-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.15rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  border-left: 4px solid #0066ff;
}

.mobile-comp-card .m-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-comp-card .m-metric-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-comp-card .m-metric-title i {
  color: #0066ff;
}

.mobile-comp-card .m-dim-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0284c7;
  background: #e0f2fe;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.mobile-comp-card .m-card-ebeam {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(2, 132, 199, 0.14) 100%);
  border: 1px solid #93c5fd;
  border-radius: var(--radius-md);
  padding: 0.95rem 1.05rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.06);
}

.mobile-comp-card .m-col-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0052cc;
  margin-bottom: 0.45rem;
}

.mobile-comp-card .m-col-content {
  font-size: 0.94rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.55;
}

.mobile-comp-card .m-col-content i {
  color: #0066ff;
  margin-right: 0.3rem;
}

.mobile-comp-card .m-card-others {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  background: #f8fafc;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
}

.mobile-comp-card .m-other-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
}

.mobile-comp-card .m-other-label {
  font-weight: 700;
  color: #64748b;
  font-size: 0.76rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mobile-comp-card .m-other-val {
  color: #334155;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* ===================================================================
   Applications Tabs & Showcase
   =================================================================== */
.app-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-full);
  color: #475569;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all var(--transition-normal);
}

.tab-btn:hover {
  background: #eff6ff;
  color: #0066ff;
  border-color: #93c5fd;
}

.tab-btn.active {
  background: linear-gradient(135deg, #0066ff 0%, #0284c7 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

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

.app-content-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.app-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.app-feature-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

.app-feature-card:hover .app-feature-img img {
  transform: scale(1.05);
}

.app-feature-body {
  padding: 1.8rem;
}

.app-feature-body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.app-tagline {
  color: #0066ff;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.app-intro {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.standards-badge-group {
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
}

.standards-badge-group .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.standards-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.standards-list li {
  font-size: 0.85rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.standards-list li i {
  color: var(--accent-emerald);
  font-size: 0.75rem;
}

/* Sub-items list accordion/cards */
.app-subitems-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subitem-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
}

.subitem-card:hover {
  border-color: #0066ff;
  box-shadow: 0 8px 18px rgba(0, 102, 255, 0.08);
  transform: translateX(4px);
}

.subitem-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.subitem-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.dose-badge {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.subitem-scope {
  font-size: 0.85rem;
  color: #0284c7;
  margin-bottom: 0.4rem;
}

.subitem-effect {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.5;
}

/* ===================================================================
   Specialized Solutions (Validation & Mask Folding)
   =================================================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.sol-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.sol-card:hover {
  border-color: #0066ff;
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.1);
  transform: translateY(-4px);
}

.sol-img-wrap {
  position: relative;
  height: 220px;
}

.sol-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sol-badge-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid #0066ff;
  color: #0066ff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sol-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sol-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.sol-tagline {
  font-size: 0.86rem;
  color: var(--accent-emerald);
  font-weight: 600;
  margin-bottom: 1rem;
}

.sol-intro {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.sol-features-list {
  margin-bottom: 1.8rem;
  flex: 1;
}

.sol-feat-item {
  margin-bottom: 0.9rem;
}

.sol-feat-item h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.sol-feat-item h5 i {
  color: #0066ff;
  font-size: 0.8rem;
}

.sol-feat-item p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  padding-left: 1.3rem;
}

.sol-partner-chips {
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
}

.sol-partner-chips .p-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: #334155;
}

/* ===================================================================
   Facilities & National Network Map
   =================================================================== */
.facility-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.facility-tab-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
  text-align: left;
}

.facility-tab-card:hover {
  border-color: #93c5fd;
  background: #f8fafc;
}

.facility-tab-card.active {
  border-color: #0066ff;
  background: #eff6ff;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.12);
}

.facility-tab-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.facility-tab-card .loc {
  font-size: 0.8rem;
  color: #0066ff;
}

.facility-detail-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.fac-img-box {
  position: relative;
  min-height: 340px;
}

.fac-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fac-info-box {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fac-tag {
  display: inline-block;
  background: rgba(0, 102, 255, 0.08);
  color: #0066ff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  align-self: flex-start;
}

.fac-info-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.8rem;
}

.fac-desc {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.fac-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.fac-meta-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.fac-meta-row i {
  color: #0066ff;
  width: 18px;
}

.fac-meta-row span {
  color: #475569;
}

/* ===================================================================
   Interactive Dose Estimator & Inquiry Mini-Tool
   =================================================================== */
.estimator-wrapper {
  background: linear-gradient(135deg, #f0f7ff 0%, #f8fafc 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.06);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3.5rem;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.form-control {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #0f172a;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
  background: #ffffff;
}

.calc-result-box {
  background: #ffffff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.05);
}

.res-dose-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0066ff;
  line-height: 1.1;
  margin: 0.5rem 0;
}

.res-dose-unit {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 600;
}

.res-detail-rows {
  margin-top: 1.2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
  font-size: 0.86rem;
}

.res-row {
  display: flex;
  justify-content: space-between;
  color: #64748b;
}

.res-row .val {
  color: #0f172a;
  font-weight: 600;
}

.res-row .val.green {
  color: #059669;
}

/* ===================================================================
   News & Insights
   =================================================================== */
.news-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.news-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: #0066ff;
  box-shadow: 0 12px 25px rgba(0, 102, 255, 0.08);
}

.news-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.news-category-tag {
  background: rgba(0, 102, 255, 0.08);
  color: #0066ff;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

.news-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card p {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0066ff;
  transition: gap var(--transition-fast);
}

.news-card:hover .news-read-more {
  gap: 0.7rem;
}

/* ===================================================================
   Contact & Quote Section
   =================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-card-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
}

.contact-card-box:hover {
  border-color: #0066ff;
  transform: translateX(4px);
  box-shadow: 0 8px 18px rgba(0, 102, 255, 0.08);
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-meta h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.contact-meta p {
  font-size: 0.9rem;
  color: #475569;
}

.contact-meta a {
  color: #0066ff;
  font-weight: 600;
}

/* Form Box */
.quote-form-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.quote-form-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.quote-form-box p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* ===================================================================
   Jobs & Careers Section
   =================================================================== */
.jobs-intro-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #334155;
}

.benefit-item i {
  color: var(--accent-emerald);
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.job-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.6rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
}

.job-card:hover {
  border-color: #0066ff;
  box-shadow: 0 8px 18px rgba(0, 102, 255, 0.08);
}

.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.job-header h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
}

.job-tags {
  display: flex;
  gap: 0.5rem;
}

.job-tag {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.6rem;
  font-size: 0.78rem;
  color: #334155;
}

.job-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.job-details h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 0.4rem;
}

.job-details ul {
  list-style: disc inside;
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.5;
}

/* ===================================================================
   Footer
   =================================================================== */
.site-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 4.5rem 0 2rem 0;
  color: #475569;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .brand-logo {
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: #0066ff;
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #475569;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #0066ff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom a {
  color: #64748b;
}

.footer-bottom a:hover {
  color: #0066ff;
}

/* ===================================================================
   Modal System (News & Inquiry & Details)
   =================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #f1f5f9;
  border: none;
  color: #64748b;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #ef4444;
  color: #ffffff;
}

.modal-body {
  color: #334155;
  font-size: 0.96rem;
  line-height: 1.8;
}

.modal-body h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.8rem;
  padding-right: 2rem;
}

.modal-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.modal-content-p {
  white-space: pre-line;
}

/* Toast Notifications */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.6rem;
  background: #ffffff;
  border: 1px solid #10b981;
  border-radius: var(--radius-md);
  color: #0f172a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 999;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.float-btn:hover {
  background: #0066ff;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

#back-to-top {
  display: none;
}

#back-to-top.show {
  display: flex;
}

/* ===================================================================
   Subpage Banner & Additional Components
   =================================================================== */
.page-banner {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(0, 102, 255, 0.08) 0%, rgba(240, 249, 255, 0.6) 50%, #ffffff 85%);
  padding: 135px 0 65px 0;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.page-banner .container {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.page-banner .container * {
  pointer-events: auto;
}

.page-banner canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

/* Tab responsive label helpers */
.tab-label-short {
  display: none;
}
.tab-label-full {
  display: inline;
}

/* Accelerator Technical Specs Grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.spec-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
}

.spec-card:hover {
  border-color: #0066ff;
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 102, 255, 0.08);
}

.spec-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 102, 255, 0.08);
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.spec-info {
  flex: 1;
}

.spec-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.spec-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.spec-desc {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.5;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.team-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: #0066ff;
  box-shadow: 0 12px 25px rgba(0, 102, 255, 0.08);
}

.team-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(2, 132, 199, 0.2) 100%);
  border: 2px solid rgba(0, 102, 255, 0.25);
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem auto;
}

.team-role {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.team-title {
  font-size: 0.85rem;
  color: #0066ff;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.team-desc {
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.6;
}

/* ===================================================================
   Honors & Certifications Grid (10 Certificates from honor.shtml)
   =================================================================== */
.honors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.honor-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.honor-card:hover {
  transform: translateY(-6px);
  border-color: #0066ff;
  box-shadow: 0 16px 32px rgba(0, 102, 255, 0.12);
}

.honor-cert-preview {
  position: relative;
  height: 220px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

.honor-cert-preview img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.honor-card:hover .honor-cert-preview img {
  transform: scale(1.05);
}

.honor-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.honor-authority-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  align-self: flex-start;
}

.honor-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.3rem;
  line-height: 1.35;
}

.honor-no {
  font-size: 0.8rem;
  color: #059669;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.honor-card p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.honor-zoom-action {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0066ff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid #f1f5f9;
}

/* ===================================================================
   Project Showcase Cards with Real Photos (Rich Media)
   =================================================================== */
.project-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.project-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: #0066ff;
  box-shadow: 0 16px 30px rgba(0, 102, 255, 0.1);
}

.project-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #f1f5f9;
}

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

.project-card:hover .project-img-wrap img {
  transform: scale(1.05);
}

.project-card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  align-self: flex-start;
}

.project-card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.project-card-body p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
}

/* Feature Equipment Photo Cards */
.media-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.media-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-normal);
}

.media-feature-card:hover {
  transform: translateY(-4px);
  border-color: #0066ff;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.08);
}

.media-feature-img {
  height: 160px;
  overflow: hidden;
  background: #f8fafc;
}

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

.media-feature-card:hover .media-feature-img img {
  transform: scale(1.05);
}

.media-feature-info {
  padding: 1rem 1.2rem;
}

.media-feature-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.media-feature-info p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

/* News Search and Card Polish */
.news-search-box {
  max-width: 480px;
  margin: 0 auto 2.5rem auto;
  position: relative;
}

.news-search-input {
  width: 100%;
  padding: 0.85rem 1.2rem 0.85rem 2.8rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-full);
  color: #0f172a;
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.news-search-input:focus {
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.news-search-box i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.news-img-wrap {
  width: 100%;
  height: 170px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.1rem;
  background: #f1f5f9;
}

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

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

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid #f1f5f9;
}

.news-read-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Section Explore Button on Index */
.section-explore-wrap {
  text-align: center;
  margin-top: 3.5rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-full);
  color: #0066ff;
  font-weight: 600;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
}

.btn-outline:hover {
  background: #eff6ff;
  border-color: #0066ff;
  color: #0066ff;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.12);
  transform: translateY(-2px);
}

/* Certificate Modal View */
.cert-modal-img-wrap {
  text-align: center;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.cert-modal-img-wrap img {
  max-width: 100%;
  max-height: 65vh;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===================================================================
   Responsive Breakpoints
   =================================================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .honors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-showcase-grid {
    grid-template-columns: 1fr;
  }
  .media-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-content-layout {
    grid-template-columns: 1fr;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .facility-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .facility-detail-card {
    grid-template-columns: 1fr;
  }
  .estimator-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-150%);
    opacity: 0;
    transition: all var(--transition-normal);
    pointer-events: none;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-actions {
    display: none;
  }
  .tab-label-short {
    display: inline;
  }
  .tab-label-full {
    display: none;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .honors-grid {
    grid-template-columns: 1fr;
  }
  .media-feature-grid {
    grid-template-columns: 1fr;
  }
  .facility-selector-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .job-details {
    grid-template-columns: 1fr;
  }
  .benefits-list {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .floating-pill-1, .floating-pill-2 {
    display: none;
  }
  .modal-box {
    padding: 1.5rem 1.1rem;
    max-height: 90vh;
  }
  .modal-close-btn {
    top: 0.8rem;
    right: 0.8rem;
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .modal-body h2 {
    font-size: 1.25rem;
  }
}

/* ===================================================================
   Content Chunking & Modular Block System (Mobile-First Segmentation)
   =================================================================== */
.content-chunk-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  margin-bottom: 1.5rem;
}

/* Stat Counters Chunking */
.chunk-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}

.chunk-stat-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.1rem 0.9rem;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.chunk-stat-card:hover {
  transform: translateY(-3px);
  border-color: #0066ff;
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.08);
  background: #ffffff;
}

.chunk-stat-card .c-icon {
  font-size: 1.5rem;
  color: #0066ff;
  margin-bottom: 0.45rem;
}

.chunk-stat-card .c-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.chunk-stat-card .c-val .counter-val {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.chunk-stat-card .c-val span:not(.counter-val) {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0066ff;
  margin-left: 2px;
}

.chunk-stat-card .c-lbl {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.35rem;
  font-weight: 600;
}

/* Business Divisions Segmented Cards */
.division-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.division-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  border-top: 3px solid #0066ff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all var(--transition-normal);
}

.division-card:hover {
  transform: translateY(-3px);
  border-color: #0066ff;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.08);
}

.division-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.division-card-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.division-card-header h4 i {
  color: #0066ff;
}

.division-card p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Vision & Mission Segmented Cards */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.vision-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border-left: 3px solid #0284c7;
  transition: all var(--transition-normal);
}

.vision-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.1);
}

.vision-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
}

.vision-card p {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.6;
  margin: 0;
}

/* Process Steps Grid & ISO Steps Flow */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.iso-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* FAQ Card Chunking */
.faq-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all var(--transition-normal);
}

.faq-card:hover {
  border-color: #0066ff;
  box-shadow: 0 6px 18px rgba(0, 102, 255, 0.08);
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.45;
  cursor: pointer;
  user-select: none;
}

.faq-badge-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0066ff;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
  background: #f8fafc;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border-left: 3px solid #10b981;
}

.faq-badge-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Dedicated One-Stop Box */
.one-stop-box {
  margin-top: 4rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

/* Key Project Meta Chips */
.project-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.project-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  background: #f1f5f9;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
}

.project-meta-chip i {
  color: #0066ff;
}

/* Smooth Scroll Margin for Sticky Nav Alignment */
section[id], .section-alt[id], .trust-bar[id], div[id] {
  scroll-margin-top: 88px;
}

/* Subnav Pills for Subpages */
.subnav-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.pill-btn:hover {
  border-color: #0066ff;
  color: #0066ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.12);
}

.pill-btn.active {
  background: linear-gradient(135deg, #0066ff 0%, #0284c7 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

/* Trust Item Link Styles */
/* Trust Item Link Styles */
.trust-item-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.trust-item-link:hover {
  transform: translateY(-3px);
  border-color: #0066ff;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.1);
}

.trust-item-link:hover h4 {
  color: #0066ff;
}

/* Applications Subitem Chunking Elements */
.subitem-scope-block {
  margin-top: 0.6rem;
  margin-bottom: 0.65rem;
}

.scope-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.25rem;
}

.scope-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.scope-chip {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0369a1;
  font-size: 0.75rem;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  display: inline-block;
}

.subitem-effect-block {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
}

.effect-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.effect-text {
  font-size: 0.82rem;
  color: #166534;
  line-height: 1.5;
  margin: 0;
}

/* Careers Chunking Components */
.job-dept-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  margin-top: 0.3rem;
  font-weight: 600;
}

.job-chunk-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}

.job-chunk-box .chunk-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed #cbd5e1;
}

.job-task-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.job-task-list li {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.job-task-list li i {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Structured Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.benefit-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: all var(--transition-fast);
}

.benefit-card:hover {
  background: #ffffff;
  border-color: #0066ff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.benefit-content h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem 0;
}

.benefit-content p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Contact Fast Actions */
.contact-actions-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

.contact-quick-act {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: #eff6ff;
  color: #0066ff;
  border: 1px solid #bfdbfe;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.contact-quick-act:hover {
  background: #0066ff;
  color: #ffffff;
}

/* FAQ Interactive Toggle Icon */
.faq-toggle-icon {
  margin-left: auto;
  font-size: 0.85rem;
  color: #94a3b8;
  transition: transform var(--transition-normal);
}

.faq-card.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: #0066ff;
}

/* ===================================================================
   Enhanced Mobile Responsiveness (max-width: 768px & 480px)
   =================================================================== */
@media (max-width: 768px) {
  /* Prevent horizontal screen expansion while preserving sticky positioning */
  .container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  section {
    padding: 3.2rem 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: 105px;
    padding-bottom: 2.8rem;
  }

  .page-banner {
    padding: 105px 0 38px 0;
  }

  /* Typography on Mobile */
  .section-title {
    font-size: 1.55rem;
    line-height: 1.35;
    word-break: break-word;
  }

  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .hero-desc {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 1.6rem;
  }

  .subitem-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  /* Mobile Horizontal Scrollable Tracks */
  .subnav-pills {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.4rem 0.2rem 0.8rem 0.2rem;
    -webkit-overflow-scrolling: touch;
    gap: 0.55rem;
    margin-top: 1rem;
  }
  .subnav-pills::-webkit-scrollbar {
    display: none;
  }

  .app-tabs-nav {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.4rem 0.2rem 0.8rem 0.2rem;
    -webkit-overflow-scrolling: touch;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
  }
  .app-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .news-filter-bar {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.4rem 0.2rem 0.8rem 0.2rem;
    -webkit-overflow-scrolling: touch;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
  }
  .news-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .pill-btn, .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }

  /* Buttons & Explore Wrappers on Mobile */
  .btn-outline {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
    padding: 0.75rem 1.1rem;
    font-size: 0.86rem;
    line-height: 1.4;
    box-sizing: border-box;
    word-break: break-word;
  }

  .section-explore-wrap {
    margin-top: 2rem;
    padding: 0 0.5rem;
  }

  .tech-schematic-wrap {
    padding: 1.15rem 0.85rem;
    margin-bottom: 2rem;
  }

  /* Chunking Grids Collapsed to 1 or 2 Columns on Mobile */
  .chunk-stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .division-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .iso-steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .specs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .media-feature-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .project-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Box Paddings Tamed on Mobile */
  .comparison-box {
    padding: 1.25rem 0.95rem;
  }

  .one-stop-box {
    padding: 1.25rem 0.95rem;
    margin-top: 2.5rem;
  }

  .fac-info-box {
    padding: 1.3rem 1rem;
  }

  .estimator-wrapper {
    padding: 1.3rem 1rem;
  }

  .app-feature-body {
    padding: 1.3rem 1rem;
  }

  .project-card-body {
    padding: 1.3rem 1rem;
  }

  .news-card {
    padding: 1.3rem 1rem;
  }

  .team-card {
    padding: 1.4rem 1rem;
  }

  .adv-card {
    padding: 1.3rem 1rem;
  }

  .quote-form-box {
    padding: 1.3rem 1rem;
  }

  .contact-card-box {
    padding: 1.15rem 0.95rem;
  }

  /* Comparison Dual Mode: Show Controls & Mobile Cards, Table Sticky First Col */
  .mobile-comp-controls {
    display: flex;
  }

  .mobile-comp-cards {
    display: flex;
  }

  .mobile-table-hint {
    display: flex;
  }

  /* When mobile card view is active, table view is hidden */
  .comparison-box.mode-cards .table-responsive {
    display: none;
  }
  .comparison-box.mode-cards .mobile-table-hint {
    display: none;
  }
  .comparison-box.mode-cards .mobile-comp-cards {
    display: flex;
  }

  /* When table mode is active, table is shown and cards hidden */
  .comparison-box.mode-table .table-responsive {
    display: block;
  }
  .comparison-box.mode-table .mobile-table-hint {
    display: flex;
  }
  .comparison-box.mode-table .mobile-comp-cards {
    display: none;
  }

  .comp-table {
    min-width: 480px;
    width: 100%;
  }

  .comp-table th,
  .comp-table td {
    padding: 0.65rem 0.55rem !important;
    width: auto !important;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .comp-table th:first-child,
  .comp-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 95px;
    max-width: 110px;
    background: #ffffff;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.08);
  }

  .comp-table th:first-child {
    z-index: 3;
    background: #f8fafc;
  }

  .comp-table th.col-ebeam,
  .comp-table td.col-ebeam {
    min-width: 135px;
    background: #eff6ff;
  }
}

/* Ultra-compact Mobile Screen Optimization (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem;
  }

  section {
    padding: 2.6rem 0;
  }

  .brand-title {
    font-size: 1.12rem;
  }

  .brand-logo img, .brand-logo-img {
    height: 38px;
    width: 35px;
  }

  .section-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .hero-title {
    font-size: clamp(1.45rem, 6vw, 1.8rem);
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }

  .chunk-stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .chunk-stat-card {
    padding: 0.8rem 0.5rem;
  }

  .chunk-stat-card .c-val {
    font-size: 1.15rem;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .mobile-comp-card .m-card-others {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .comp-table {
    min-width: 440px;
  }
}


