/* ============================================
   Smarteam Scientific corp. - Main Stylesheet
   翰揚貿易股份有限公司 官方網站
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #0a2a5e;
  --primary-dark: #051a3e;
  --primary-light: #1a4080;
  --accent: #0099d8;
  --accent-hover: #007ab8;
  --accent-light: #e8f4fc;
  --metallic-blue-gradient: linear-gradient(135deg, #1a365d 0%, #2a4b7c 50%, #172f55 100%);
  --metallic-blue-bright: #3f6fa8;
  --metallic-blue-bright-hover: #4c7dbc;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --bg-light: #f7f9fc;
  --bg-white: #ffffff;
  --success: #38a169;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.13);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Noto Sans TC', 'Inter', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 90px 0;
}
.section-sm {
  padding: 60px 0;
}

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-title span {
  color: var(--accent);
}
.section-desc {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
}
.section-head {
  margin-bottom: 52px;
}
.section-head.center {
  text-align: center;
}
.section-head.center .section-desc {
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--metallic-blue-bright);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(26,54,93,0.22);
}
.btn-primary:hover {
  background: var(--metallic-blue-bright-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23,47,85,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 14px;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 42, 94, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.header.scrolled {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.home-header {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(18,63,122,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 30px rgba(18, 63, 122, 0.1);
}

.home-header .logo-divider {
  background: rgba(18,63,122,0.12);
}

.home-header .logo-cn {
  color: var(--primary-dark);
}

.home-header .logo-sub-right {
  color: var(--text-light);
}

.home-header .nav-link {
  color: var(--text-mid);
}

.home-header .nav-link:hover,
.home-header .nav-link.active {
  color: var(--primary);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Logo image (actual company logo PNG) */
.logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.logo-text-right {
  display: flex;
  flex-direction: column;
}
.logo-cn {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.logo-sub-right {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* Legacy classes kept for compatibility */
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), #005fa3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.logo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}
.nav-link i {
  font-size: 11px;
  transition: transform 0.3s;
}
.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* Non-home header nav alignment */
.header:not(.home-header) .header-inner {
  gap: 20px;
}
.header:not(.home-header) .nav {
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px 6px;
}
.header:not(.home-header) .nav-item-spectrometers .nav-link {
  gap: 8px;
}
.header:not(.home-header) .nav-link {
  white-space: nowrap;
}
.header:not(.home-header) .dropdown {
  min-width: 280px;
}
.header:not(.home-header) .dropdown a.active {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
}

@media (min-width: 1101px) {
  .header:not(.home-header) .container {
    max-width: 1320px;
  }
  .header:not(.home-header) .header-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 14px;
  }
  .header:not(.home-header) .logo {
    flex: 0 0 auto;
  }
  .header:not(.home-header) .nav {
    flex: 0 1 auto;
    justify-content: flex-start;
    min-width: 0;
    gap: 2px;
  }
  .header:not(.home-header) .nav-link {
    padding: 8px 12px;
    font-size: 13px;
  }
  .header:not(.home-header) .header-cta,
  .header:not(.home-header) .nav-cta {
    flex: 0 0 auto;
    margin-left: auto;
  }
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.dropdown a:hover {
  background: var(--accent-light);
  color: var(--accent);
  padding-left: 26px;
}
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.nav-phone i {
  color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  color: white;
  font-size: 22px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 980px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.04) 0%, transparent 32%, transparent 72%, rgba(0,153,216,0.05) 100%),
    radial-gradient(circle at 68% 18%, rgba(104, 156, 255, 0.22) 0%, transparent 24%),
    linear-gradient(135deg, #020915 0%, #07111f 28%, #0b1d35 62%, #102746 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.03) 10%, transparent 22%),
    linear-gradient(112deg, transparent 0%, rgba(255,255,255,0.04) 36%, transparent 54%),
    linear-gradient(290deg, transparent 20%, rgba(0,153,216,0.07) 52%, transparent 72%);
  opacity: 0.78;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.45;
}
.hero-bg-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(0,153,216,0.16) 0%, rgba(66,38,146,0.08) 46%, transparent 72%);
  top: -160px;
  right: -140px;
  border-radius: 50%;
  filter: blur(10px);
}
.hero-bg-glow2 {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0,153,216,0.1) 0%, transparent 72%);
  bottom: -120px;
  left: 4%;
  border-radius: 50%;
  filter: blur(12px);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 76px;
  align-items: center;
  padding: 116px 0 34px;
  row-gap: 48px;
}
.hero-content {
  max-width: 560px;
}
.hero-brand-lockup {
  margin-bottom: 26px;
}
.hero-brand-logo {
  width: min(260px, 65vw);
  height: auto;
  display: block;
}
.hero-title {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.14;
  margin-bottom: 22px;
  letter-spacing: -2.4px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.22);
}
.hero-desc {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  line-height: 1.85;
  margin-bottom: 22px;
  max-width: 540px;
}
.hero-desc strong {
  color: #ffffff;
}
.hero-support {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}
.hero-accent-line {
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1e8cff 0%, #7cd8ff 100%);
  margin-bottom: 28px;
  box-shadow: 0 0 24px rgba(30,140,255,0.38);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
}
.hero-proof-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08);
}
.hero-proof-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-proof-copy strong {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
}
.hero-proof-copy span {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-btn-secondary {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
  background: rgba(255,255,255,0.02);
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.78);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 620px;
}
.hero-main-image-glow {
  position: absolute;
  top: 1%;
  right: 6%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,216,0.3) 0%, rgba(82,52,178,0.14) 42%, transparent 72%);
  filter: blur(18px);
  z-index: 0;
}
.hero-main-image-wrap {
  position: relative;
  z-index: 1;
  width: min(92%, 920px);
  margin-left: auto;
  margin-right: 0;
  padding: 20px 0 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  box-shadow: 0 40px 120px rgba(0,0,0,0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: visible;
}
.hero-main-image-wrap::before {
  content: "";
  position: absolute;
  inset: 18% 0 auto;
  height: 56%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
  z-index: -1;
}
.hero-main-image-wrap picture {
  display: block;
}
.hero-main-image {
  width: 92%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 34px 40px rgba(0,0,0,0.28));
}
.hero-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 28px 34px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(5,12,25,0.88) 0%, rgba(4,10,21,0.94) 100%);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.hero-metric-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  min-height: 88px;
  border-right: 1px solid rgba(30,140,255,0.25);
}
.hero-metric-item:last-child {
  border-right: none;
}
.hero-metric-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #2e8fff;
  font-size: 34px;
  background: rgba(19, 92, 196, 0.08);
}
.hero-metric-copy strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}
.hero-metric-copy span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.74);
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ============================================
   TRUST BAR (institutions served)
   ============================================ */
.trust-bar {
  background: var(--bg-light);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-right: 20px;
  border-right: 2px solid var(--border);
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}
.trust-logo-item {
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.trust-logo-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* ============================================
   FLAGSHIP SECTION
   ============================================ */
.flagship-section {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.flagship-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #f0f8ff, var(--accent-light));
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.flagship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.section-label-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.exclusive-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.flagship-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.flagship-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ff-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 18px;
  margin-top: 2px;
}
.ff-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}
.ff-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.flagship-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* Model Showcase */
.flagship-visual {
  position: relative;
}
.model-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.model-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  position: relative;
}
.model-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.primary-model {
  grid-column: span 2;
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent-light), #fff);
}
.model-card-label {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--success);
  color: white;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}
.model-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 14px;
}
.model-icon.sm {
  width: 40px;
  height: 40px;
  font-size: 18px;
  background: var(--primary-light);
}
.model-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}
.model-subtitle {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.model-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.model-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}
.model-specs li i {
  color: var(--success);
  font-size: 12px;
  width: 14px;
}
.sm-specs li {
  font-size: 12px;
}
.accessories-strip {
  margin-top: 20px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.accessories-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.accessories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.acc-item {
  padding: 4px 12px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 600;
}

/* Hero card featured */
.hero-card-featured {
  border-color: rgba(0,153,216,0.4) !important;
  background: rgba(0,153,216,0.1) !important;
}
.hero-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}
.plasma-icon {
  background: rgba(0,153,216,0.25) !important;
}
.exclusive-tag {
  background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(247,147,30,0.2)) !important;
  border-color: rgba(247,147,30,0.4) !important;
  color: #f7931e !important;
}

/* Dropdown badge */
.dropdown-badge {
  display: inline-block;
  background: #ff6b35;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
}
.mobile-badge {
  display: inline-block;
  background: #ff6b35;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ============================================
   PRODUCTS – TOP 3
   ============================================ */
.products { background: var(--bg-white); }
.products-top3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.product-card-top {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.product-card-top:hover::before { transform: scaleX(1); }
.product-card-top:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}
.pct-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.pct-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  transition: var(--transition);
}
.product-card-top:hover .pct-icon {
  transform: scale(1.1);
}
.uvozone-color {
  background: linear-gradient(135deg, #e8f4fc, #c5e4f5);
  color: #0099d8;
}
.kd-color {
  background: linear-gradient(135deg, #e8f7ef, #c0e8d0);
  color: #27ae60;
}
.ftir-color {
  background: linear-gradient(135deg, #f0e8fc, #d8b0ea);
  color: #8e44ad;
}
.pct-title-wrap {}
.pct-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.25;
  text-wrap: balance;
  word-break: keep-all;
}
.pct-subtitle {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pct-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}
.pct-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.pct-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  transition: var(--transition);
}
.pct-link:hover {
  gap: 12px;
}
.pct-link i {
  transition: transform 0.3s;
}
.product-card-top:hover .pct-link i {
  transform: translateX(4px);
}

/* Products More Grid */
.products-more-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.products-more-title::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: var(--border);
}
.products-grid-small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card-sm {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}
.product-card-sm:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
  transform: translateY(-4px);
}
.pcs-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 12px;
}
.pcs-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
  text-wrap: balance;
  word-break: keep-all;
}
.pcs-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 14px;
}
.pcs-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

/* ============================================
   BRANDS MORE NOTE
   ============================================ */
.brands-more-note {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--text-mid);
  padding: 24px;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================
   EXPERTISE / CONTENT HUB
   ============================================ */
.expertise-section {
  background:
    radial-gradient(circle at top left, rgba(0,153,216,0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
  border-bottom: 1px solid var(--border);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.expertise-card {
  background: rgba(255,255,255,0.96);
  border: 1.5px solid #dbe7f1;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(10,42,94,0.06);
  transition: var(--transition);
}

.expertise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,153,216,0.4);
  box-shadow: 0 24px 48px rgba(10,42,94,0.1);
}

.expertise-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,153,216,0.14), rgba(94,203,240,0.24));
  color: var(--accent);
  font-size: 24px;
}

.expertise-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 10px;
  text-wrap: balance;
  word-break: keep-all;
}

.expertise-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.expertise-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.expertise-link:hover {
  gap: 12px;
}
.brand-card-exclusive {
  border-color: rgba(0,153,216,0.3) !important;
  background: linear-gradient(135deg, #fff, var(--accent-light)) !important;
}
.brand-card-exclusive:hover {
  border-color: var(--accent) !important;
}

/* ============================================
   CONTACT – NEW STYLE
   ============================================ */
.contact-detail-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: var(--transition);
}
.contact-detail-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.cdc-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}
.cdc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.cdc-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.cdc-value a {
  color: var(--accent);
}
.cdc-value a:hover {
  text-decoration: underline;
}
.inquiry-types {
  margin-top: 24px;
  background: var(--accent-light);
  border: 1.5px solid rgba(0,153,216,0.2);
  border-radius: var(--radius);
  padding: 20px;
}
.inquiry-types h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.inquiry-types h4 i {
  color: var(--accent);
}
.inquiry-types ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.inquiry-types li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text-mid);
}
.inquiry-types li i {
  color: var(--success);
  width: 16px;
  font-size: 12px;
}

/* Footer contact summary */
.footer-contact-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
}
.footer-contact-summary div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-summary i {
  color: var(--accent);
  width: 16px;
}
.footer-tax {
  margin-top: 20px;
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* Brand logos strip - keep for brand-overrides */
.brands-strip {
  background: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.brands-strip-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-right: 16px;
  border-right: 2px solid var(--border);
}
.brand-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  flex: 1;
}
.brand-logo-item {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  color: var(--text-light);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1.5px solid transparent;
}
.brand-logo-item:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-light);
}

/* ============================================
   TAG (shared utility)
   ============================================ */
.tag {
  padding: 3px 10px;
  background: var(--bg-light);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-mid);
  font-weight: 600;
}

/* Legacy product card (still used in sub-pages) */
.products { background: var(--bg-white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.product-card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
}
.product-card:hover .product-card-icon {
  background: var(--accent);
  color: white;
}
.product-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-subtitle {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
}
.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.product-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.product-card-link i {
  transition: transform 0.3s;
}
.product-card:hover .product-card-link i {
  transform: translateX(4px);
}

/* ============================================
   PRODUCTS & SOLUTIONS
   ============================================ */
.products-solutions {
  padding: 80px 0;
  background: #fafafa;
}
.products-solutions-head {
  margin-bottom: 50px;
}
.products-solutions-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #1e293b;
}
.products-solutions-desc {
  margin: 0 auto;
  max-width: 720px;
}
.products-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.solution-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  border-color: rgba(10, 42, 94, 0.14);
}
.solution-card-media {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 24px;
  letter-spacing: 0.4px;
}
.solution-logo-strip {
  height: 190px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e2e8f0;
}
.solution-logo-strip-single {
  justify-content: center;
  padding: 0 28px;
}
.solution-logo-strip-dual,
.solution-logo-strip-multi {
  justify-content: space-evenly;
  padding: 0 28px;
  gap: 20px;
}
.solution-logo-placeholder {
  color: #94a3b8;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
}
.solution-logo-strip-single .solution-logo-placeholder {
  font-size: 14px;
}
.card-logo {
  max-height: 72px;
  width: auto;
  max-width: 100%;
  filter: none;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.3s ease;
  object-fit: contain;
  flex: 0 1 auto;
}
.card-logo-wide {
  max-width: 230px;
}
.solution-logo-strip-single .card-logo {
  max-width: min(86%, 360px);
  max-height: 96px;
}
.solution-logo-strip-dual .card-logo {
  max-width: min(44%, 240px);
  max-height: 78px;
}
.solution-logo-strip-multi .card-logo {
  max-width: min(31%, 180px);
  max-height: 64px;
}
.solution-card:hover .card-logo,
.card-logo:hover {
  transform: scale(1.06);
}
.solution-card-media-plasma {
  background:
    linear-gradient(135deg, rgba(10, 42, 94, 0.78), rgba(0, 153, 216, 0.42)),
    linear-gradient(135deg, #d9e5f4, #b8d0ea);
}
.solution-card-media-spectroscopy {
  background:
    linear-gradient(135deg, rgba(7, 32, 72, 0.78), rgba(47, 104, 171, 0.44)),
    linear-gradient(135deg, #dce7f5, #c9d9ee);
}
.solution-card-media-consumables {
  background:
    linear-gradient(135deg, rgba(39, 69, 110, 0.74), rgba(98, 144, 201, 0.4)),
    linear-gradient(135deg, #e4ecf6, #cfdeef);
}
.solution-card-media-pump {
  background:
    linear-gradient(135deg, rgba(12, 40, 84, 0.78), rgba(36, 122, 183, 0.42)),
    linear-gradient(135deg, #d8e4f2, #c7d8eb);
}
.solution-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
}
.solution-card-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.solution-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.35;
}
.solution-card-desc {
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.solution-card-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  padding: 16px 0 18px;
  margin-top: 4px;
  border-top: 1px solid #e2e8f0;
}
.solution-card-brand-logo {
  max-height: 40px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  flex: 0 1 auto;
  transition: transform 0.3s ease;
}
.solution-card-brand-logo-wide {
  max-width: 158px;
}
.solution-card-brand-logo-harrick {
  max-height: 52px;
  max-width: 190px;
}
.solution-card-single-brand .solution-card-body {
  padding-top: 24px;
}
.solution-card-brands-top {
  justify-content: flex-start;
  padding: 0 0 18px;
  margin: 0 0 18px;
  border-top: none;
  border-bottom: 1px solid #e2e8f0;
}
.solution-card-brands-harrick {
  justify-content: flex-start;
  align-items: center;
  padding: 4px 0 18px;
  margin: 0 0 18px;
  border-top: none;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-radius: 14px;
}
.solution-card-harrick .solution-card-title {
  margin-bottom: 0;
}
.solution-card-harrick .solution-card-desc {
  margin-bottom: 18px;
}
.solution-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.solution-card:hover .solution-card-brand-logo,
.solution-card-brand-logo:hover {
  transform: scale(1.05);
}
.solution-card-authority {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.solution-card-authority-inline {
  margin: 0;
  padding: 9px 14px 9px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(212, 169, 92, 0.52);
  background:
    linear-gradient(135deg, #fffaf0 0%, #f8e7bd 42%, #e3bb68 100%);
  color: #7b5618;
  align-self: flex-start;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(171, 126, 40, 0.16),
    0 10px 22px rgba(160, 116, 34, 0.14);
  position: relative;
  overflow: hidden;
}
.solution-card-authority-inline i {
  font-size: 11px;
  color: #b7791f;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.55));
}
.solution-card-authority-inline::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.18) 26%, rgba(255,255,255,0) 56%);
  pointer-events: none;
}
.solution-card-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.solution-card-link {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
}
.solution-card-link i {
  width: 20px;
  text-align: center;
  margin-right: 2px;
  color: var(--accent);
}

/* ============================================
   APPLICATIONS SECTION
   ============================================ */
.applications { background: var(--bg-white); }
.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.app-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 36px 28px;
  cursor: pointer;
  transition: var(--transition);
}
.app-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0,153,216,0.15) 100%);
}
.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.app-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.app-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.app-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.app-card-instruments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.inst-tag {
  padding: 3px 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  background: linear-gradient(135deg, #3458B0 0%, #223154 100%) !important;
  color: #FFFFFF;
  padding: 100px 0;
}
.why-us .section-title {
  color: #FFFFFF;
}
.why-us .section-desc {
  color: #FFFFFF;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(0,153,216,0.4);
  transform: translateY(-4px);
}
.why-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.why-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.why-card-desc {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 1.7;
}

/* ============================================
   TRUST & STATS
   ============================================ */
.trust-section { background: var(--bg-light); }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.trust-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.trust-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.trust-feature:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.trust-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.trust-feature-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.trust-feature-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.trust-stat {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.trust-stat:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.trust-stat-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-stat-num span {
  color: var(--accent);
}
.trust-stat-label {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 600;
}

/* ============================================
   FEATURED CONTENT
   ============================================ */
.content-section { background: var(--bg-white); }
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.content-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.content-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.content-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
}
.content-card-img.blue { background: linear-gradient(135deg, #e8f4fc, #bde0f0); }
.content-card-img.teal { background: linear-gradient(135deg, #e6f7ef, #b0eacf); }
.content-card-img.purple { background: linear-gradient(135deg, #f0e8fc, #d8b0ea); }
.content-card-body {
  padding: 24px;
}
.content-card-category {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.content-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 10px;
}
.content-card-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.content-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(160deg, #0d2c5e 0%, #0a4080 50%, #0d3468 100%);
  border-top: 3px solid var(--accent);
  padding: 80px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}
.cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.btn-white {
  background: white;
  color: var(--accent);
  font-weight: 800;
}
.btn-white:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 700;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--bg-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info {}
.contact-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}
.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.contact-office {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.contact-office-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-office-name i {
  font-size: 12px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.contact-detail i {
  width: 18px;
  color: var(--accent);
  font-size: 13px;
  text-align: center;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 7px;
}
label span.req {
  color: #e53e3e;
  margin-left: 3px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  font-family: var(--font-main);
  background: var(--bg-light);
  transition: var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(0,153,216,0.1);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
}
.form-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}

.hidden-field {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(to right, #1a365d 0%, #2a4b7c 40%, #172f55 58%, #000000 88%);
  color: rgba(255,255,255,0.88);
  padding: 64px 0 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(26, 54, 93, 0.12) 0%,
    rgba(42, 75, 124, 0.08) 28%,
    rgba(23, 47, 85, 0.04) 45%,
    rgba(0, 0, 0, 0.08) 62%,
    rgba(0, 0, 0, 0.3) 78%,
    rgba(0, 0, 0, 0.5) 100%
  );
}
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(92, 143, 210, 0.18) 0%, rgba(62, 101, 165, 0.11) 24%, transparent 48%),
    radial-gradient(circle at 78% 20%, rgba(125, 173, 231, 0.12) 0%, rgba(52, 84, 138, 0.08) 18%, transparent 42%);
}
.footer > .container,
.footer-bottom {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-img {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.86);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--accent);
  color: white;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10, 22, 43, 0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}
.footer-bottom a {
  color: rgba(255,255,255,0.78);
}
.footer-bottom a:hover {
  color: var(--accent);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  text-decoration: none;
}
.floating-btn-primary {
  background: var(--accent);
  color: white;
}
.floating-btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,153,216,0.4);
}
.floating-btn-secondary {
  background: var(--primary);
  color: white;
  font-size: 13px;
}
.floating-btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.floating-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--primary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: var(--transition);
  border: 1.5px solid var(--border);
}
.floating-icon-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Scroll to top */
#scrollTop {
  display: none;
}
#scrollTop.visible {
  display: flex;
}

/* LINE floating button & QR popup */
.floating-btn-line {
  background: #00B900;
  color: white;
  font-size: 13px;
}
.floating-btn-line:hover {
  background: #009900;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,185,0,0.35);
}
.floating-line-wrap {
  position: relative;
}
.line-qr-popup {
  position: fixed;
  bottom: 220px;
  right: 24px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  padding: 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.97);
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  z-index: 910;
  overflow: hidden;
}
.line-qr-popup.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.line-qr-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 18px 14px;
  gap: 10px;
}
.line-qr-title {
  font-size: 13px;
  font-weight: 700;
  color: #00B900;
  display: flex;
  align-items: center;
  gap: 6px;
}
.line-qr-inner img {
  border-radius: 8px;
  border: 2px solid #e8f8e8;
}
.line-qr-hint {
  font-size: 11px;
  color: #888;
  margin: 0;
}
.line-qr-link {
  display: block;
  width: 100%;
  text-align: center;
  background: #00B900;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.2s;
}
.line-qr-link:hover {
  background: #009900;
  color: white;
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: var(--primary-dark);
  z-index: 990;
  padding: 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  display: block;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.mobile-nav a:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}
.mobile-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 8px 0;
}
.mobile-nav-section {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 18px 4px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce-bar {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 1001;
}
.announce-bar a {
  color: white;
  text-decoration: underline;
  margin-left: 8px;
}
.announce-bar a:hover {
  color: rgba(255,255,255,0.8);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success i {
  font-size: 56px;
  color: var(--success);
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.form-success p {
  color: var(--text-mid);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-top3 { grid-template-columns: 1fr 1fr; }
  .products-grid-small { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .flagship-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 40px;
    padding: 108px 0 24px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-support {
    max-width: 100%;
  }
  .hero-proof {
    margin-bottom: 30px;
  }
  .hero-cta { justify-content: flex-start; }
  .hero-visual {
    min-height: auto;
    width: 100%;
    justify-content: center;
  }
  .hero-main-image-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 12px 0 0;
  }
  .hero-main-image-glow {
    width: 360px;
    height: 360px;
    right: 50%;
    transform: translateX(34%);
  }
  .hero-main-image {
    width: 96%;
  }
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px 18px;
  }
  .hero-metric-item {
    padding: 18px 14px;
    min-height: 0;
  }
  .hero-metric-item:nth-child(2) {
    border-right: none;
  }
  .hero-metric-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(30,140,255,0.2);
  }
  .flagship-grid { grid-template-columns: 1fr; }
  .flagship-section::before { display: none; }
  .model-showcase { grid-template-columns: 1fr; }
  .primary-model { grid-column: span 1; }
  .products-top3 { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .products-solutions-grid { grid-template-columns: 1fr 1fr; }
  .applications-grid { grid-template-columns: 1fr 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-buttons { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .products-solutions {
    padding: 64px 0;
  }
  .hero {
    min-height: auto;
  }
  .hero-brand-lockup {
    margin-bottom: 20px;
  }
  .hero-title {
    font-size: clamp(34px, 12vw, 48px);
    line-height: 1.18;
    letter-spacing: -1.4px;
  }
  .hero-desc {
    font-size: 17px;
  }
  .hero-support {
    font-size: 16px;
  }
  .hero-proof {
    align-items: flex-start;
  }
  .hero-proof-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .hero-proof-copy strong {
    font-size: 18px;
  }
  .hero-proof-copy span {
    font-size: 14px;
  }
  .hero-cta {
    width: 100%;
    gap: 12px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    padding: 18px 14px;
  }
  .hero-metric-item {
    border-right: none;
    border-bottom: 1px solid rgba(30,140,255,0.16);
    padding: 16px 8px;
  }
  .hero-metric-item:nth-child(2) {
    border-right: none;
  }
  .hero-metric-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(30,140,255,0.16);
  }
  .hero-metric-item:last-child {
    border-bottom: none;
  }
  .hero-metric-icon {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }
  .hero-metric-copy strong {
    font-size: 20px;
  }
  .products-grid { grid-template-columns: 1fr; }
  .products-top3 { grid-template-columns: 1fr; }
  .products-grid-small { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .products-solutions-grid { grid-template-columns: 1fr; gap: 20px; }
  .applications-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .flagship-cta { flex-direction: column; }
  .brands-more-note { flex-direction: column; text-align: center; }
  .products-solutions-title { font-size: 28px; }
  .solution-card-body { padding: 24px 22px; }
  .solution-card-media { height: 160px; font-size: 13px; }
  .solution-card-brands {
    gap: 12px 14px;
    padding: 14px 0 16px;
  }
  .solution-card-brand-logo {
    max-height: 34px;
    max-width: 112px;
  }
  .solution-card-brand-logo-wide {
    max-width: 132px;
  }
  .solution-card-brand-logo-harrick {
    max-height: 42px;
    max-width: 158px;
  }
  .solution-card-brands-top {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .solution-card-brands-harrick {
    padding: 2px 0 16px;
    margin-bottom: 16px;
  }
  .solution-card-authority {
    font-size: 12px;
    padding: 9px 12px;
  }
  .solution-card-authority-inline {
    padding: 7px 11px 7px 10px;
    font-size: 9px;
  }
  .solution-card-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .solution-logo-strip {
    height: 156px;
    padding: 0 18px;
    gap: 14px;
  }
  .card-logo {
    max-height: 52px;
  }
  .card-logo-wide {
    max-width: 170px;
  }
  .solution-logo-strip-single .card-logo {
    max-width: min(88%, 250px);
    max-height: 68px;
  }
  .solution-logo-strip-dual .card-logo {
    max-width: min(44%, 150px);
    max-height: 56px;
  }
  .solution-logo-strip-multi .card-logo {
    max-width: min(31%, 108px);
    max-height: 44px;
  }
  .expertise-card { padding: 24px 20px; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
  .trust-bar-label { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 10px; }
  .brands-strip-inner { flex-direction: column; align-items: flex-start; }
  .brands-strip-label { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 12px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Intersection observer driven */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   HARRICK PLASMA OVERVIEW SECTION
   ============================================ */
.harrick-overview {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.harrick-overview-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: stretch;
  margin-top: 48px;
}

.harrick-overview-visual,
.harrick-overview-content {
  min-width: 0;
}

.harrick-family-frame {
  padding: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 12%, rgba(10, 42, 94, 0.07), transparent 22%),
    radial-gradient(circle at 86% 14%, rgba(94, 203, 240, 0.16), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
  border: 1px solid #dfeaf0;
  box-shadow: 0 20px 46px rgba(10, 42, 94, 0.1);
  overflow: hidden;
}

.harrick-family-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 14px 28px rgba(10, 42, 94, 0.14));
}

.harrick-overview-content {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.harrick-overview-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 12px;
}

.harrick-overview-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 26px;
  max-width: 760px;
}

.harrick-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.harrick-quick-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 20px 18px;
  box-shadow: 0 10px 24px rgba(10,42,94,0.06);
  min-height: 100%;
}

.harrick-quick-card.featured {
  border-color: rgba(0,153,216,0.34);
  box-shadow: 0 14px 34px rgba(0,153,216,0.12);
  transform: translateY(-2px);
}

.harrick-quick-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.harrick-quick-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
}

.harrick-family-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px 18px;
  margin-bottom: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text-mid);
  font-size: 13.5px;
  line-height: 1.8;
}

.harrick-family-note i {
  color: var(--accent);
  margin-top: 2px;
}

.harrick-overview-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.harrick-overview-cta .btn-primary {
  min-width: 260px;
  box-shadow: 0 10px 24px rgba(0,153,216,0.18);
}

.harrick-overview-cta .btn-outline-dark {
  min-width: 150px;
}

/* Hero card featured layout with product image */
.hero-card-featured-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-card-featured-inner > div:first-child {
  flex: 1;
}
.hero-card-product-img {
  flex-shrink: 0;
  width: 200px;
}
.hero-card-product-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
@media (max-width: 700px) {
  .hero-card-featured-inner { flex-direction: column; }
  .hero-card-product-img { width: 100%; max-width: 180px; margin: 0 auto; }
}

.harrick-cta-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  padding-top: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .harrick-family-frame {
    padding: 24px 20px 20px;
  }

  .harrick-quick-grid {
    grid-template-columns: 1fr;
  }

  .harrick-overview-cta { width: 100%; justify-content: flex-start; }
}
@media (max-width: 600px) {
  .harrick-overview-cta { flex-direction: column; }
  .harrick-overview-cta .btn { width: 100%; justify-content: center; }
}

/* ── Hero card wide (spans both columns, used for FTIR) ── */
.hero-card.hero-card-wide {
  grid-column: span 2;
}
/* When there are exactly 3 small cards: UV Ozone + KD side-by-side, FTIR full-width */
@media (max-width: 500px) {
  .hero-card.hero-card-wide { grid-column: span 2; }
}

/* ── Stat item: 唯一 highlight ── */
.stat-num br { display: none; }  /* keep on one line by default */

/* ============================================
   HOME HERO FINAL COVER OVERRIDE
   使用真實 Harrick Plasma family 圖作為首頁品牌封面
   ============================================ */
.hero-brand-cover {
  min-height: 100vh;
  position: relative;
  background: #061326;
  isolation: isolate;
}

.hero-brand-cover .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-cover-picture,
.hero-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-cover-image {
  object-fit: cover;
  object-position: center right;
  transform: scale(1.01);
  filter: brightness(0.72) contrast(1.10) saturate(0.90);
}

.hero-cover-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(2, 10, 24, 0.98) 0%,
      rgba(2, 10, 24, 0.92) 28%,
      rgba(2, 10, 24, 0.75) 45%,
      rgba(2, 10, 24, 0.30) 68%,
      rgba(2, 10, 24, 0.15) 100%),
    linear-gradient(180deg,
      rgba(2, 10, 24, 0.45) 0%,
      rgba(2, 10, 24, 0.05) 40%,
      rgba(2, 10, 24, 0.92) 100%);
}

.hero-brand-cover .hero-bg-grid,
.hero-brand-cover .hero-bg-glow,
.hero-brand-cover .hero-bg-glow2,
.hero-brand-cover .hero-bg-orbit {
  opacity: 0;
}

.hero-brand-inner {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(360px, 1.22fr);
  align-items: center;
  gap: 56px;
  padding: 120px 0 0;
}

.hero-brand-content {
  position: relative;
  z-index: 4;
  max-width: 650px;
  padding-bottom: 150px;
}

.hero-brand-lockup {
  margin-bottom: 28px;
}

.hero-brand-logo {
  width: min(280px, 62vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.38));
}

.hero-brand-badge,
.hero-brand-desc {
  display: none;
}

.hero-brand-title {
  max-width: 680px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 26px;
  color: #fff;
  text-shadow: 0 14px 42px rgba(0,0,0,0.70);
}

.hero-brand-title .highlight {
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

.hero-support {
  max-width: 610px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 1.2px;
  margin-bottom: 26px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.65);
}

.hero-accent-line {
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: #1568ff;
  box-shadow: 0 0 24px rgba(21,104,255,0.55);
  margin-bottom: 34px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 560px;
  width: fit-content;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin: 0 0 34px;
}

.hero-proof-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: 0 12px 28px rgba(0,0,0,0.34);
}

.hero-proof-copy strong {
  display: block;
  color: #ffffff;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.35;
  text-shadow: 0 10px 30px rgba(0,0,0,0.65);
}

.hero-proof-copy span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 2px;
}

.hero-brand-cover .hero-cta {
  gap: 20px;
  margin-bottom: 0;
}

.hero-brand-cover .hero-cta .btn {
  min-width: 206px;
  justify-content: center;
  border-radius: 8px;
  padding: 16px 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.hero-btn-secondary {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-brand-visual {
  min-height: 520px;
}

.hero-metrics {
  grid-column: 1 / -1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 28px 0;
  background: linear-gradient(180deg, rgba(3,12,28,0.10), rgba(3,12,28,0.78));
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-metric-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 0 34px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  box-shadow: none;
}

.hero-metric-item:last-child {
  border-right: none;
}

.hero-metric-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f66ff;
  font-size: 25px;
  background: transparent;
  border-radius: 0;
}

.hero-metric-copy strong {
  color: #ffffff;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.1;
  font-weight: 800;
}

.hero-metric-copy span {
  display: block;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .hero-cover-image {
    object-position: 62% center;
  }

  .hero-cover-overlay {
    background:
      linear-gradient(90deg, rgba(3,12,28,0.96) 0%, rgba(3,12,28,0.86) 48%, rgba(3,12,28,0.46) 100%),
      linear-gradient(180deg, rgba(3,12,28,0.28) 0%, rgba(3,12,28,0.08) 56%, rgba(3,12,28,0.86) 100%);
  }

  .hero-brand-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 112px 0 0;
  }

  .hero-brand-content {
    max-width: 680px;
    padding-bottom: 230px;
  }

  .hero-brand-visual {
    min-height: 0;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metric-item:nth-child(2) {
    border-right: none;
  }

  .hero-metric-item:nth-child(-n + 2) {
    padding-bottom: 18px;
  }

  .hero-metric-item:nth-child(n + 3) {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
}

@media (max-width: 720px) {
  .hero-brand-cover {
    min-height: auto;
  }

  .hero-cover-image {
    object-position: 64% center;
    opacity: 0.74;
  }

  .hero-cover-overlay {
    background:
      linear-gradient(90deg, rgba(3,12,28,0.98) 0%, rgba(3,12,28,0.92) 58%, rgba(3,12,28,0.66) 100%),
      linear-gradient(180deg, rgba(3,12,28,0.38) 0%, rgba(3,12,28,0.48) 48%, rgba(3,12,28,0.94) 100%);
  }

  .hero-brand-inner {
    display: block;
    min-height: auto;
    padding: 104px 0 0;
  }

  .hero-brand-content {
    max-width: none;
    padding-bottom: 320px;
  }

  .hero-brand-logo {
    width: min(230px, 70vw);
  }

  .hero-brand-title {
    font-size: clamp(36px, 11vw, 48px);
    letter-spacing: -0.7px;
  }

  .hero-support {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .hero-brand-cover .hero-cta {
    gap: 12px;
  }

  .hero-brand-cover .hero-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-metrics {
    position: relative;
    grid-template-columns: 1fr;
    margin-left: -24px;
    margin-right: -24px;
    padding: 20px 24px;
    background: rgba(3,12,28,0.84);
  }

  .hero-metric-item {
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
  }

  .hero-metric-item:first-child {
    border-top: none;
  }

  .hero-metric-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 22px;
  }

  .hero-metric-copy strong {
    font-size: 22px;
  }
}

/* ============================================
   HOME HERO TRANSPARENT PRODUCT OVERRIDE
   透明去背 Harrick family 主視覺放入 Hero 右側
   ============================================ */
.hero-brand-cover {
  background:
    radial-gradient(circle at 72% 18%, rgba(82, 128, 255, 0.16) 0%, transparent 24%),
    linear-gradient(135deg, #020915 0%, #07111f 28%, #0b1d35 62%, #102746 100%);
}

.hero-brand-cover .hero-bg {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 10%, transparent 24%),
    linear-gradient(90deg, rgba(3,12,28,0.22) 0%, rgba(3,12,28,0.08) 48%, transparent 100%);
}

.hero-cover-picture {
  display: none;
}

.hero-cover-overlay {
  background:
    linear-gradient(90deg,
      rgba(2, 10, 24, 0.96) 0%,
      rgba(2, 10, 24, 0.9) 28%,
      rgba(2, 10, 24, 0.68) 48%,
      rgba(2, 10, 24, 0.18) 76%,
      rgba(2, 10, 24, 0.08) 100%),
    linear-gradient(180deg,
      rgba(2, 10, 24, 0.22) 0%,
      rgba(2, 10, 24, 0.04) 42%,
      rgba(2, 10, 24, 0.86) 100%);
}

.hero-brand-visual {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}

.hero-brand-visual::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 132, 255, 0.22) 0%, rgba(110, 155, 255, 0.08) 42%, transparent 72%);
  filter: blur(14px);
  z-index: 0;
}

.hero-product-picture {
  position: relative;
  z-index: 1;
  display: block;
  width: min(940px, 100%);
}

.hero-product-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 48px rgba(0,0,0,0.34));
}

@media (max-width: 1100px) {
  .hero-brand-visual {
    min-height: 420px;
    justify-content: center;
  }

  .hero-product-picture {
    width: min(860px, 100%);
  }
}

@media (max-width: 720px) {
  .hero-brand-visual {
    min-height: auto;
    margin-top: 18px;
    justify-content: center;
  }

  .hero-brand-visual::before {
    width: 280px;
    height: 280px;
    right: 50%;
    transform: translateX(50%);
    top: 8%;
  }

  .hero-product-picture {
    width: min(720px, 108%);
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   HOME HERO FULL IMAGE OVERRIDE
   使用完整設計稿作為滿版 Hero
   ============================================ */
.hero-brand-cover {
  min-height: min(100vh, 1024px);
  background: #050d1a;
}

.hero-brand-cover .hero-bg {
  background: #050d1a;
}

.hero-cover-picture,
.hero-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-cover-image {
  object-fit: cover;
  object-position: center center;
  background: #050d1a;
}

.hero-cover-overlay,
.hero-brand-visual,
.hero-metrics {
  display: none;
}

.hero-brand-inner {
  min-height: min(100vh, 1024px);
  display: block;
  padding: 0;
}

.hero-brand-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .hero-brand-cover {
    min-height: auto;
    aspect-ratio: 3 / 2;
  }

  .hero-brand-inner {
    min-height: auto;
    aspect-ratio: 3 / 2;
  }

  .hero-cover-image {
    object-position: center center;
  }
}

/* ============================================
   HOME HERO B2B BRAND FINAL OVERRIDE
   ============================================ */
.hero-brand-cover {
  min-height: 100vh;
  background: #061326;
}

.hero-brand-cover .hero-bg {
  background: #061326;
}

.hero-cover-image {
  object-fit: cover;
  object-position: 59% 36%;
  transform: scale(0.9);
  filter: brightness(0.94) contrast(1.03) saturate(1);
}

.hero-cover-overlay {
  display: block;
  background:
    linear-gradient(90deg,
      rgba(2, 10, 24, 0.96) 0%,
      rgba(2, 10, 24, 0.9) 24%,
      rgba(2, 10, 24, 0.72) 39%,
      rgba(2, 10, 24, 0.18) 64%,
      rgba(2, 10, 24, 0.03) 100%),
    linear-gradient(180deg,
      rgba(3, 12, 28, 0.12) 0%,
      rgba(3, 12, 28, 0.03) 38%,
      rgba(3, 12, 28, 0.76) 100%);
}

.hero-brand-inner {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(240px, 1fr);
  align-items: center;
  gap: 40px;
  padding: 116px 0 120px;
}

.hero-brand-content {
  position: relative;
  width: auto;
  height: auto;
  max-width: 620px;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 0;
  z-index: 4;
}

.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 1px solid rgba(80, 136, 255, 0.34);
  background: rgba(10, 28, 56, 0.36);
  color: rgba(199, 221, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-brand-title {
  max-width: 620px;
  font-size: clamp(60px, 5.2vw, 72px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.hero-brand-cover .hero-title.hero-brand-title,
.hero-brand-cover .hero-title.hero-brand-title * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.hero-brand-title .highlight {
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

.hero-brand-desc {
  display: block;
  max-width: 620px;
  margin-bottom: 26px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.85;
}

.hero-brand-cover .hero-desc.hero-brand-desc,
.hero-brand-cover .hero-desc.hero-brand-desc * {
  color: #ffffff !important;
}

.hero-support,
.hero-accent-line,
.hero-brand-lockup,
.hero-brand-visual {
  display: none;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  width: auto;
  max-width: 620px;
}

.hero-proof-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  color: #dce8ff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.hero-proof-copy strong {
  display: block;
  color: rgba(255,255,255,0.95);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-proof-copy span {
  display: none;
}

.hero-brand-cover .hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-brand-cover .hero-cta .btn {
  min-width: 220px;
  justify-content: center;
  border-radius: 12px;
  padding: 16px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-brand-cover .hero-cta .btn:hover {
  transform: translateY(-2px);
}

.hero-brand-cover .hero-cta .btn-primary {
  background: linear-gradient(135deg, #0f66ff 0%, #1f87ff 100%);
  box-shadow: 0 18px 40px rgba(15, 102, 255, 0.32);
  border: 1px solid rgba(73, 143, 255, 0.55);
}

.hero-brand-cover .hero-cta .btn-primary:hover {
  box-shadow: 0 24px 46px rgba(15, 102, 255, 0.42);
}

.hero-btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.32);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.52);
  box-shadow: 0 22px 44px rgba(0,0,0,0.26);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(3,12,28,0.08), rgba(3,12,28,0.72));
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-metric-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  min-width: 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.hero-metric-item:last-child {
  border-right: none;
}

.hero-metric-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  color: #428fff;
  font-size: 17px;
  background: rgba(24, 92, 204, 0.12);
}

.hero-metric-copy strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-metric-copy span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,0.76);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .hero-cover-image {
    object-position: 61% 38%;
    transform: scale(0.92);
  }

  .hero-brand-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
    padding: 104px 0 160px;
  }

  .hero-brand-content {
    max-width: 620px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px 0;
  }

  .hero-metric-item:nth-child(2) {
    border-right: none;
  }

  .hero-metric-item:nth-child(-n + 2) {
    padding-bottom: 14px;
  }

  .hero-metric-item:nth-child(n + 3) {
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
}

@media (max-width: 720px) {
  .hero-brand-cover {
    min-height: auto;
  }

  .hero-cover-image {
    object-position: 64% 36%;
    transform: scale(0.94);
    opacity: 0.74;
  }

  .hero-cover-overlay {
    background:
      linear-gradient(90deg,
        rgba(3,12,28,0.97) 0%,
        rgba(3,12,28,0.92) 50%,
        rgba(3,12,28,0.56) 100%),
      linear-gradient(180deg,
        rgba(3,12,28,0.18) 0%,
        rgba(3,12,28,0.2) 46%,
        rgba(3,12,28,0.9) 100%);
  }

  .hero-brand-inner {
    min-height: auto;
    display: block;
    padding: 96px 0 0;
  }

  .hero-brand-content {
    max-width: none;
    padding-bottom: 40px;
  }

  .hero-brand-badge {
    font-size: 11px;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
  }

  .hero-brand-title {
    font-size: clamp(38px, 10.4vw, 46px);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 18px;
  }

  .hero-brand-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .hero-proof {
    margin-bottom: 24px;
  }

  .hero-brand-cover .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-brand-cover .hero-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-metrics {
    position: relative;
    grid-template-columns: 1fr;
    margin-left: -24px;
    margin-right: -24px;
    padding: 12px 24px;
    background: rgba(3,12,28,0.86);
  }

  .hero-metric-item {
    padding: 10px 0;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .hero-metric-item:first-child {
    border-top: none;
  }

  .hero-metric-item:nth-child(-n + 2),
  .hero-metric-item:nth-child(n + 3) {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .hero-metric-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 15px;
  }

  .hero-metric-copy strong {
    font-size: 17px;
  }
}

/* ============================================
   HERO READABILITY AND SEPARATION OVERRIDE
   Premium dark-mode readability tuning
   ============================================ */

.hero-brand-content {
  max-width: 540px;
}

.hero-brand-title {
  max-width: 540px;
  color: #F8FAFC !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero-brand-title .highlight {
  color: #F8FAFC !important;
  -webkit-text-fill-color: #F8FAFC !important;
}

.hero-brand-desc {
  max-width: 540px;
  color: #94A3B8 !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero-proof-copy strong,
.hero-brand-badge {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero-cover-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(2, 10, 24, 0.94) 0%,
      rgba(2, 10, 24, 0.88) 24%,
      rgba(2, 10, 24, 0.68) 42%,
      rgba(2, 10, 24, 0.2) 64%,
      rgba(2, 10, 24, 0.04) 84%,
      rgba(2, 10, 24, 0.1) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 10, 24, 0.12) 0%,
      rgba(2, 10, 24, 0.02) 40%,
      rgba(2, 10, 24, 0.78) 100%
    );
}

.hero-cover-image {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%);
  mask-image: linear-gradient(to right, transparent 0%, black 22%);
}

.hero-brand-cover .hero-cta .btn-primary {
  box-shadow:
    0 14px 30px rgba(0, 87, 190, 0.26),
    0 6px 16px rgba(0, 0, 0, 0.24);
}

.hero-btn-secondary {
  border-color: rgba(255, 255, 255, 0.54);
}

.hero-btn-secondary:hover {
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .hero-cover-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 10, 24, 0.95) 0%,
        rgba(2, 10, 24, 0.86) 46%,
        rgba(2, 10, 24, 0.78) 100%
      );
  }

  .hero-cover-image {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ============================================
   HERO IMAGE POSITION AND WRAP OVERRIDE
   Final line-break and image separation tuning
   ============================================ */

.hero-brand-content {
  max-width: 600px;
  padding-left: 5%;
}

.hero-brand-title {
  max-width: 600px;
  color: #FCFEFF !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.48);
}

.hero-brand-desc {
  color: #C6D3E3 !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.42);
}

.hero-cover-image {
  object-fit: cover;
  object-position: right center;
  filter: brightness(1.05) contrast(1.02) saturate(1.02);
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-cover-overlay {
  background:
    linear-gradient(
      to right,
      rgba(11, 18, 34, 0.92) 0%,
      rgba(11, 18, 34, 0.68) 40%,
      rgba(9, 15, 27, 0) 70%
    ),
    linear-gradient(
      to bottom,
      rgba(27, 47, 86, 0.04) 0%,
      rgba(9, 15, 27, 0.02) 42%,
      rgba(9, 15, 27, 0.64) 100%
    );
}

@media (max-width: 1100px) {
  .hero-brand-content {
    max-width: 600px;
    padding-left: 3%;
  }

  .hero-cover-image {
    object-position: 72% center;
  }
}

@media (max-width: 720px) {
  .hero-brand-content {
    max-width: 100%;
    padding-left: 0;
  }

  .hero-cover-image {
    object-position: 70% center;
  }

  .hero-cover-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(9, 15, 27, 0.88) 0%,
        rgba(9, 15, 27, 0.76) 46%,
        rgba(9, 15, 27, 0.68) 100%
      );
  }
}

/* ============================================
   HERO BLUE SCALE OVERRIDE
   Use reference navy as the darkest tone
   ============================================ */
.hero-brand-content {
  position: relative;
  z-index: 2;
  background: transparent !important;
}

.hero-brand-title {
  color: #f7fbff !important;
  text-shadow: 0 6px 20px rgba(8, 14, 28, 0.32);
}

.hero-brand-desc {
  color: #d2dcef !important;
  text-shadow: 0 4px 14px rgba(8, 14, 28, 0.2);
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.hero-proof-copy strong,
.hero-brand-badge {
  text-shadow: 0 4px 12px rgba(8, 14, 28, 0.22);
}

.hero-brand-badge {
  background: transparent !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.hero-cover-image {
  object-fit: cover;
  object-position: right center;
  filter: brightness(1.04) contrast(1.01) saturate(0.98);
}

.hero-cover-overlay {
  background: linear-gradient(
    to right,
    #2b436f 0%,
    #2b436f 45%,
    rgba(43, 67, 111, 0.72) 60%,
    rgba(43, 67, 111, 0.32) 72%,
    rgba(43, 67, 111, 0) 84%
  );
}

.hero-brand-cover .hero-bg-glow {
  background: radial-gradient(circle, rgba(92, 143, 210, 0.18) 0%, rgba(62, 101, 165, 0.11) 42%, transparent 74%);
}

.hero-brand-cover .hero-bg-glow2 {
  background: radial-gradient(circle, rgba(125, 173, 231, 0.12) 0%, rgba(52, 84, 138, 0.08) 40%, transparent 74%);
}

.hero-proof {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-proof-icon {
  background: rgba(158, 188, 233, 0.12);
  color: #edf4ff;
}

.hero-metrics {
  background: linear-gradient(180deg, rgba(30, 48, 82, 0.48) 0%, rgba(30, 48, 82, 0.72) 100%);
  border-top: 1px solid rgba(163, 189, 228, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-metric-item {
  background: rgba(43, 67, 111, 0.22);
  border-right: 1px solid rgba(163, 189, 228, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.hero-metric-icon {
  background: rgba(164, 194, 236, 0.12);
  color: #eff5ff;
}

.hero-brand-cover .hero-cta .btn-primary {
  box-shadow:
    0 16px 34px rgba(41, 79, 145, 0.24),
    0 6px 16px rgba(10, 18, 33, 0.16);
}

.hero-btn-secondary {
  border-color: rgba(228, 237, 252, 0.52);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 720px) {
  .hero-cover-overlay {
    background: linear-gradient(
      180deg,
      #2b436f 0%,
      rgba(43, 67, 111, 0.92) 42%,
      rgba(43, 67, 111, 0.68) 70%,
      rgba(43, 67, 111, 0.42) 100%
    );
  }
}

/* ============================================
   HERO SEAMLESS EDGE BLENDING OVERRIDE
   Blend black-edged product image into dark navy stage
   ============================================ */
.hero-brand-cover {
  background: #05080f !important;
}

.hero-brand-cover .hero-bg {
  background: radial-gradient(circle at 30% 50%, #172a45 0%, #090e17 60%, #05080f 100%) !important;
}

.hero-brand-content,
.hero-brand-title,
.hero-brand-desc,
.hero-brand-badge,
.hero-proof,
.hero-proof-copy,
.hero-proof-copy strong {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.hero-brand-desc,
.hero-brand-badge,
.hero-proof {
  border: none !important;
}

.hero-proof-icon {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.hero-cover-image {
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8)) !important;
}

.hero-cover-overlay {
  background: linear-gradient(
    to right,
    rgba(9, 14, 23, 0.9) 0%,
    rgba(9, 14, 23, 0.76) 26%,
    rgba(9, 14, 23, 0.48) 48%,
    rgba(9, 14, 23, 0.14) 72%,
    rgba(9, 14, 23, 0) 86%
  ) !important;
}

.hero-bg-glow,
.hero-bg-glow2,
.hero-bg-orbit {
  display: none !important;
}

@media (max-width: 720px) {
  .hero-brand-cover .hero-bg {
    background: radial-gradient(circle at 34% 28%, #172a45 0%, #090e17 58%, #05080f 100%) !important;
  }

  .hero-cover-overlay {
    background: linear-gradient(
      180deg,
      rgba(9, 14, 23, 0.92) 0%,
      rgba(9, 14, 23, 0.78) 40%,
      rgba(9, 14, 23, 0.52) 72%,
      rgba(9, 14, 23, 0.24) 100%
    ) !important;
  }
}

/* ============================================
   HERO BLUE IMAGE OVERRIDE
   Use the new blue campaign image and restore the original brand blue stage
   ============================================ */
.hero-brand-cover {
  background: #2b436f !important;
}

.hero-brand-cover .hero-bg {
  background: #2b436f !important;
}

.hero-cover-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-cover-picture::before {
  content: none;
}

.hero-cover-picture::after {
  content: none;
}

.hero-cover-image {
  filter: brightness(1.04) contrast(1.01) saturate(0.98) !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: none;
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-cover-overlay {
  background: linear-gradient(
    to right,
    rgba(43, 67, 111, 0.84) 0%,
    rgba(43, 67, 111, 0.8) 30%,
    rgba(43, 67, 111, 0.56) 52%,
    rgba(43, 67, 111, 0.26) 68%,
    rgba(43, 67, 111, 0) 84%
  ) !important;
}

.hero-brand-cover .hero-brand-visual {
  display: none !important;
}

.hero-brand-content,
.hero-brand-title,
.hero-brand-desc,
.hero-brand-badge,
.hero-proof,
.hero-proof-copy,
.hero-proof-copy strong,
.hero-proof-icon {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.hero-brand-cover .hero-bg-grid,
.hero-brand-cover .hero-bg-orbit {
  display: none !important;
}

.hero-brand-cover .hero-bg-glow {
  display: block !important;
  background: radial-gradient(circle, rgba(92, 143, 210, 0.18) 0%, rgba(62, 101, 165, 0.11) 42%, transparent 74%) !important;
}

.hero-brand-cover .hero-bg-glow2 {
  display: block !important;
  background: radial-gradient(circle, rgba(125, 173, 231, 0.12) 0%, rgba(52, 84, 138, 0.08) 40%, transparent 74%) !important;
}

.hero-proof {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-proof-icon {
  background: rgba(158, 188, 233, 0.12) !important;
  color: #edf4ff !important;
}

.hero-metrics {
  background: linear-gradient(180deg, rgba(30, 48, 82, 0.48) 0%, rgba(30, 48, 82, 0.72) 100%) !important;
  border-top: 1px solid rgba(163, 189, 228, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-metric-item {
  background: rgba(43, 67, 111, 0.22) !important;
  border-right: 1px solid rgba(163, 189, 228, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.hero-metric-icon {
  background: rgba(164, 194, 236, 0.12) !important;
  color: #eff5ff !important;
}

.hero-brand-cover .hero-cta .btn-primary {
  box-shadow:
    0 16px 34px rgba(41, 79, 145, 0.24),
    0 6px 16px rgba(10, 18, 33, 0.16) !important;
}

.hero-btn-secondary {
  border-color: rgba(228, 237, 252, 0.52);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 720px) {
  .hero-brand-cover .hero-bg {
    background: #2b436f !important;
  }

  .hero-cover-picture {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-cover-picture::before {
    content: none;
  }

  .hero-cover-picture::after {
    content: none;
  }

  .hero-cover-image {
    object-fit: cover;
    object-position: 70% center;
    transform: none;
  }

  .hero-cover-overlay {
    background: linear-gradient(
      180deg,
      rgba(43, 67, 111, 0.84) 0%,
      rgba(43, 67, 111, 0.76) 42%,
      rgba(43, 67, 111, 0.58) 70%,
      rgba(43, 67, 111, 0.34) 100%
    ) !important;
  }
}

/* HERO composition final tuning */
.hero-cover-image,
.hero-product-image {
  object-fit: cover;
  object-position: 76% center;
}

.hero-brand-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(7, 22, 48, 0.88) 0%,
      rgba(7, 22, 48, 0.78) 32%,
      rgba(7, 22, 48, 0.48) 48%,
      rgba(7, 22, 48, 0.18) 66%,
      rgba(7, 22, 48, 0.04) 100%
    );
}

.hero-brand-inner {
  grid-template-columns: minmax(440px, 0.82fr) minmax(520px, 1.18fr);
}

.hero-brand-content {
  max-width: 560px;
  margin-left: 0;
}

.hero-brand-title {
  max-width: 540px;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.12;
  color: #ffffff;
  text-shadow: 0 8px 28px rgba(0,0,0,0.48);
}

.hero-brand-desc,
.hero-support {
  max-width: 520px;
}

.hero-brand-visual {
  min-height: 540px;
}

.hero-product-picture {
  transform: translateX(11vw) scale(0.86);
  transform-origin: center right;
}

.hero-product-image {
  filter:
    drop-shadow(0 30px 48px rgba(0,0,0,0.42))
    brightness(1.04)
    contrast(1.04)
    saturate(0.98);
}

.hero-metrics {
  max-width: 980px;
  margin-left: 0;
  margin-right: auto;
  background: rgba(8, 25, 54, 0.58);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 1100px) {
  .hero-cover-image,
  .hero-product-image {
    object-position: 68% center;
  }

  .hero-brand-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-product-picture {
    transform: translateX(4vw) scale(0.9);
  }
}

@media (max-width: 720px) {
  .hero-brand-cover::after {
    background:
      linear-gradient(
        180deg,
        rgba(7, 22, 48, 0.88) 0%,
        rgba(7, 22, 48, 0.82) 48%,
        rgba(7, 22, 48, 0.72) 100%
      );
  }

  .hero-brand-content {
    max-width: 100%;
  }

  .hero-brand-title {
    max-width: 100%;
  }

  .hero-product-picture {
    transform: translateX(2vw) scale(0.76);
    opacity: 0.8;
  }
}

/* CRITICAL DESIGN: premium hero and shortened products grid */
.hero-brand-cover {
  position: relative;
  isolation: isolate;
  background: linear-gradient(to right, #1a365d 0%, #2a4b7c 40%, #172f55 58%, #000000 88%) !important;
}

.hero-brand-cover .hero-bg {
  background: linear-gradient(to right, #1a365d 0%, #2a4b7c 40%, #172f55 58%, #000000 88%) !important;
}

.hero-cover-image {
  object-fit: cover;
  object-position: 79% center;
  filter: brightness(1.02) contrast(1.03) saturate(0.98) !important;
}

.hero-brand-cover::after {
  background: linear-gradient(
    to right,
    rgba(26, 54, 93, 0.12) 0%,
    rgba(42, 75, 124, 0.08) 28%,
    rgba(23, 47, 85, 0.04) 45%,
    rgba(0, 0, 0, 0.08) 62%,
    rgba(0, 0, 0, 0.3) 78%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-brand-inner {
  grid-template-columns: minmax(460px, 0.88fr) minmax(500px, 1.12fr);
}

.hero-brand-content {
  max-width: 575px;
  position: relative;
  z-index: 2;
}

.hero-brand-title {
  max-width: 560px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.hero-brand-desc {
  max-width: 540px;
  line-height: 1.85;
  color: #edf4ff;
}

.hero-brand-visual {
  min-height: 590px;
  display: flex !important;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-product-picture {
  width: min(780px, 100%);
  transform: translateX(14vw) translateY(1.5rem) scale(0.8);
  transform-origin: bottom right;
}

.hero-product-image {
  object-fit: contain;
  object-position: right bottom;
  filter:
    drop-shadow(0 26px 42px rgba(0,0,0,0.36))
    brightness(1.04)
    contrast(1.03)
    saturate(0.99);
}

.hero-metrics {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-metric-item {
  background: transparent !important;
  border-right: 1px solid rgba(255,255,255,0.12);
  box-shadow: none !important;
}

.hero-metric-icon {
  background: rgba(255,255,255,0.1) !important;
}

.hero-title-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.hero-metrics {
  bottom: 28px;
}

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

.products-main-grid .product-card-top {
  height: 100%;
  margin-bottom: 0;
}

.plasma-color {
  background: linear-gradient(135deg, #e8f2ff, #bfd6fb);
  color: #1c6de0;
}

.host-color {
  background: linear-gradient(135deg, #eef3fb, #d5e0f6);
  color: #355f9e;
}

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

@media (max-width: 1100px) {
  .hero-cover-image {
    object-position: 71% center;
  }

  .hero-brand-inner {
    grid-template-columns: 1fr;
  }

  .hero-brand-content {
    max-width: 700px;
  }

  .hero-brand-visual {
    min-height: 420px;
  }

  .hero-product-picture {
    transform: translateX(6vw) translateY(0.5rem) scale(0.82);
  }
}

@media (max-width: 720px) {
  .hero-brand-cover .hero-bg {
    background: linear-gradient(to bottom, #1a365d 0%, #2a4b7c 52%, #000000 100%) !important;
  }

  .hero-brand-cover::after {
    background: linear-gradient(
      180deg,
      rgba(26, 54, 93, 0.10) 0%,
      rgba(42, 75, 124, 0.06) 36%,
      rgba(0, 0, 0, 0.18) 72%,
      rgba(0, 0, 0, 0.36) 100%
    );
  }

  .hero-cover-image {
    object-position: 68% center;
  }

  .hero-brand-title {
    max-width: 100%;
  }

  .hero-brand-desc {
    max-width: 100%;
    line-height: 1.78;
  }

  .hero-brand-visual {
    min-height: 300px;
  }

  .hero-product-picture {
    transform: translateX(3vw) translateY(0) scale(0.72);
    opacity: 0.88;
  }

  .products-main-grid {
    grid-template-columns: 1fr;
  }

  .hero-metric-item {
    border-right: none;
  }
}

/* ============================================
   FINAL METALLIC BLUE THEME OVERRIDES
   ============================================ */
.hero-brand-cover,
.hero-brand-cover .hero-bg {
  background: var(--metallic-blue-gradient) !important;
}

.footer {
  background: linear-gradient(to right, #1a365d 0%, #2a4b7c 40%, #172f55 58%, #000000 88%) !important;
}
