/*
Theme Name: Haisen Audio
Theme URI: https://haisenhk.com
Author: Haisen Audio
Author URI: https://haisenhk.com
Description: Custom WordPress theme for audio cable RFQ planning with project-specific written scope.
Version: 1.0.101
License: Proprietary
Text Domain: haisen-audio
*/

/* Self-hosted Barlow (GDPR/ePrivacy: no third-party Google Fonts request) */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/barlow-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/barlow-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/barlow-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/barlow-latin-700-normal.woff2') format('woff2');
}

:root {
  --bg-primary: #1A1A1A;
  --bg-card: #242424;
  --bg-footer: #0F0F0F;
  --accent: #D4A24E;
  --accent-dark: #B8872E;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #888888;
  --text-dim: #666666;
  --border: #333333;
  --font: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1440px;
  --section-pad-x: 60px;
  --section-pad-y: 80px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo-mark {
  width: 28px; height: 28px;
  position: relative;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text-white { color: var(--text-primary); }
.logo-text-gold { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--text-primary); }
.nav-dropdown { position: relative; }
.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible,
.nav-dropdown.active > summary { color: var(--text-primary); }
.nav-dropdown summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
  border-radius: 2px;
}
.nav-dropdown svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.nav-dropdown[open] > summary svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s;
  box-shadow: 0 14px 34px rgba(0,0,0,0.34);
  z-index: 1002;
}
.nav-dropdown[open] .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu-wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  min-width: 390px;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.15s;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a.active {
  background: rgba(212,162,78,0.1);
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-secondary {
  border: 1px solid #4D4D4D;
  color: var(--text-primary);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-large { padding: 14px 28px; font-size: 15px; }
.btn-full { width: 100%; }

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--text-primary);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--section-pad-x);
  flex-direction: column;
  gap: 10px;
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 8px; }
.mobile-nav-group {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-group + .mobile-nav-group { border-top: 0; }
.mobile-nav-group summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 14px 28px 14px 0;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
}
.mobile-nav-group summary::-webkit-details-marker { display: none; }
.mobile-nav-group summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
}
.mobile-nav-group[open] summary::after { content: '−'; }
.mobile-nav-group.active summary { color: var(--accent); }
.mobile-nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  padding: 0 0 12px;
}
.mobile-nav-links a {
  padding: 9px 0;
  font-size: 14px;
  line-height: 1.35;
}
.mobile-menu a.active { color: var(--accent); }
@media (max-width: 480px) {
  .mobile-nav-links { grid-template-columns: 1fr; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.7) 50%, rgba(15,15,15,0.4) 100%);
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 60% 50%, rgba(212,162,78,0.08) 0%, transparent 70%);
}

/* Compact hero for subpages */
.hero-compact {
  min-height: 500px;
  text-align: center;
}
.hero-compact .hero-badge { margin-bottom: 24px; }
.hero-compact .hero-title { max-width: 900px; margin: 0 auto 16px; }
.hero-compact .hero-subtitle { max-width: 720px; margin: 0 auto; }
.hero-compact .hero-overlay {
  background: linear-gradient(90deg, rgba(15,15,15,0.80) 0%, rgba(15,15,15,0.55) 50%, rgba(15,15,15,0.30) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--section-pad-x);
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(212,162,78,0.4);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-secondary);
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* ===== Section Common ===== */
.section {
  border-bottom: 1px solid var(--border);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
}

/* ===== Products ===== */
.products { padding: var(--section-pad-y) var(--section-pad-x); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.product-card-img {
  width: 100%; height: 240px;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body {
  padding: 24px;
}
.product-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.2s;
}
.product-card-link:hover { gap: 10px; }
.product-card-link svg { width: 12px; height: 12px; }

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}
.link-gold svg { width: 14px; height: 14px; }

/* ===== Advantages ===== */
.advantages { padding: var(--section-pad-y) var(--section-pad-x); }
.adv-bento {
  display: flex;
  gap: 16px;
}
.adv-bento-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.adv-bento-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.adv-card-row {
  display: flex;
  min-height: 200px;
}
.adv-card-icon-box {
  width: 200px;
  min-height: 200px;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-shrink: 0;
}
.adv-card-icon-box svg { width: 48px; height: 48px; }
.adv-card-icon-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
}
.adv-card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  flex: 1;
}
.adv-card-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
}
.adv-card-title {
  font-size: 22px;
  font-weight: 600;
}
.adv-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.adv-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.adv-feature {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
}

.adv-card-factory {
  display: flex;
  min-height: 295px;
}
.adv-factory-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.adv-factory-img {
  width: 420px;
  flex-shrink: 0;
  overflow: hidden;
}
.adv-factory-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.adv-stats {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}
.adv-stat-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.adv-stat-label {
  font-size: 11px;
  color: var(--text-secondary);
}
.adv-card-v {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.adv-card-v svg { width: 40px; height: 40px; }

/* ===== Certifications ===== */
.certifications { padding: var(--section-pad-y) var(--section-pad-x); }
.cert-badges {
  display: flex;
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.cert-badge {
  flex: 1;
  padding: 32px 24px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cert-badge-icon svg { width: 36px; height: 36px; }
.cert-badge-name { font-size: 16px; font-weight: 600; }
.cert-badge-desc { font-size: 12px; color: var(--text-secondary); }
.cert-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.qa-process {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  padding: 40px;
}
.qa-title-block {
  width: 320px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
}
.qa-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.qa-title { font-size: 24px; font-weight: 600; }
.qa-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.qa-divider-v {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}
.qa-steps {
  flex: 1;
  display: flex;
}
.qa-step {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.qa-step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.qa-step-title {
  font-size: 14px;
  font-weight: 600;
}
.qa-step-desc {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.trusted-by {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 48px;
  line-height: 1.5;
}

/* ===== Contact ===== */
.contact { padding: var(--section-pad-y) var(--section-pad-x); }
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-header .section-label { margin-bottom: 12px; }
.contact-header .section-title { margin-bottom: 12px; }
.contact-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}
.contact-body {
  display: flex;
  border: 1px solid var(--border);
}
.contact-form-wrap {
  width: 720px;
  padding: 48px;
  flex-shrink: 0;
}
.form-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field.full { width: 100%; }
.form-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-dim);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}
.form-trust {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 12px;
}
.form-success {
  display: none;
  padding: 24px;
  background: rgba(212,162,78,0.1);
  border: 1px solid var(--accent);
  border-radius: 4px;
  text-align: center;
}
.form-success.active { display: block; }
.form-success h3 {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-info {
  flex: 1;
  padding: 48px;
  background: var(--bg-primary);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.info-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-icon {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }
.info-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.info-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.info-value-sm { font-size: 14px; }
.trust-badges {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-badge svg { width: 14px; height: 14px; }

/* ===== Footer ===== */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 60px var(--section-pad-x) 32px;
}
.footer-top {
  display: flex;
  gap: 80px;
  margin-bottom: 40px;
}
.footer-brand {
  width: 360px;
  flex-shrink: 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-logo svg { width: 28px; height: 28px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-nav {
  flex: 1;
  display: flex;
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-copyright, .footer-cms {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WordPress Overrides ===== */
.admin-bar .header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .header { top: 46px; }
}
.site-main { background: var(--bg-primary); }
.wpcf7-form { margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  :root { --section-pad-x: 40px; }
  .hero-title { font-size: 48px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-bento { flex-direction: column; }
  .adv-bento-left, .adv-bento-right { width: 100%; }
  .contact-body { flex-direction: column; }
  .contact-form-wrap { width: 100%; }
  .contact-info { border-left: none; border-top: 1px solid var(--border); }
  .cert-badges { flex-wrap: wrap; }
  .cert-badge { min-width: 50%; }
  .qa-process { flex-direction: column; }
  .qa-title-block { width: 100%; padding-right: 0; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
  .qa-divider-v { display: none; }
  .qa-steps { flex-wrap: wrap; }
  .qa-step { min-width: 33.33%; }
}

@media (max-width: 768px) {
  :root { --section-pad-x: 20px; --section-pad-y: 60px; }
  .header-left { gap: 24px; }
  .nav { display: none; }
  .header-rfq { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 15px; }
  .section-title { font-size: 28px; }
  .product-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .adv-card-row, .adv-card-factory { flex-direction: column; }
  .adv-card-icon-box { width: 100%; min-height: 120px; }
  .adv-factory-img { width: 100%; height: 200px; }
  .cert-badge { min-width: 100%; }
  .cert-divider { width: 100%; height: 1px; }
  .form-row { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-brand { width: 100%; }
  .footer-nav { flex-wrap: wrap; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }
  .qa-step { min-width: 50%; }
  .trust-badges { justify-content: center; }
}
/* ===== Page Hero (About & FAQ) ===== */
.page-hero {
  padding: calc(72px + 80px) var(--section-pad-x) 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.18;
  margin: 24px 0;
}
.page-hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== Story Section ===== */
.story { padding: var(--section-pad-y) var(--section-pad-x); }
.story-grid {
  display: flex;
  gap: 60px;
  align-items: center;
}
.story-left {
  flex: 1;
  min-width: 0;
}
.story-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.22;
  margin: 12px 0 24px;
}
.story-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.story-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}
.story-hl {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.story-hl-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.story-hl-label {
  font-size: 13px;
  color: var(--text-secondary);
}
.story-image {
  width: 580px;
  height: 420px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
.story-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.story-image-placeholder svg { width: 48px; height: 48px; }
.story-image-placeholder span {
  font-size: 14px;
  color: var(--text-dim);
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-bar-row {
  display: flex;
  align-items: center;
}
.stats-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 30px;
  text-align: center;
}
.stats-bar-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stats-bar-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.stats-bar-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== Dual Presence ===== */
.presence { padding: var(--section-pad-y) var(--section-pad-x); }
.presence-header {
  text-align: center;
  margin-bottom: 48px;
}
.presence-header-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.6;
}
.presence-cards {
  display: flex;
  gap: 24px;
}
.presence-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid rgba(212,162,78,0.2);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.presence-card-icon {
  width: 48px;
  height: 48px;
}
.presence-card-icon svg { width: 100%; height: 100%; }
.presence-card-title {
  font-size: 22px;
  font-weight: 700;
}
.presence-card-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-top: -12px;
}
.presence-card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.presence-card-items li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.presence-card-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== Values Grid ===== */
.values { padding: var(--section-pad-y) var(--section-pad-x); }
.values-header {
  text-align: center;
  margin-bottom: 48px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-card-icon {
  width: 40px;
  height: 40px;
}
.value-card-icon svg { width: 100%; height: 100%; }
.value-card-title {
  font-size: 20px;
  font-weight: 700;
}
.value-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Certs Row ===== */
.certs { padding: var(--section-pad-y) var(--section-pad-x); }
.certs-row {
  display: flex;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 36px 40px;
  align-items: center;
  justify-content: space-between;
}
.certs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.certs-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}
.certs-desc {
  font-size: 12px;
  color: var(--text-secondary);
}
.certs-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== CTA Section ===== */
.cta {
  padding: 80px var(--section-pad-x);
  text-align: center;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}
.cta-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}
.cta-email {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== FAQ List ===== */
.faq { padding: var(--section-pad-y) var(--section-pad-x); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-cat {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 32px;
}
.faq-cat-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.faq-item {
  padding: 16px 0;
}
.faq-q {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.faq-a {
  margin-top: 8px;
}
.faq-a p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-a strong { color: var(--text-primary); }
.faq-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ===== About & FAQ Responsive ===== */
@media (max-width: 1200px) {
  .story-grid { flex-direction: column; }
  .story-image { width: 100%; height: 320px; }
  .presence-cards { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .certs-row { flex-wrap: wrap; gap: 20px; padding: 28px 24px; }
  .certs-item { min-width: 45%; }
  .certs-divider:nth-child(4n) { display: none; }
}
@media (max-width: 768px) {
  .hero-compact { min-height: 420px; }
  .hero-compact .hero-title { font-size: 32px; }
  .story-grid { gap: 40px; }
  .story-title { font-size: 28px; }
  .story-highlights { gap: 24px; }
  .stats-bar-row { flex-wrap: wrap; }
  .stats-bar-item { min-width: 50%; }
  .stats-bar-divider:nth-child(2n) { display: none; }
  .cta-title { font-size: 28px; }
  .faq-cat { padding: 24px; }
}
/* ===== Trust Strip ===== */
.trust-strip { padding: 0 var(--section-pad-x); }
.trust-strip .container { padding: 0; }
.trust-row {
  display: flex;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 40px 40px;
  align-items: flex-start;
}
.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 0 8px;
}
.trust-icon {
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.trust-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.trust-desc {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 250px;
}
.trust-divider {
  width: 1px;
  min-height: 80px;
  background: var(--border);
  flex-shrink: 0;
  align-self: stretch;
}

/* ===== Product Section ===== */
.product-section { padding: var(--section-pad-y) var(--section-pad-x); }
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.category-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
  margin-top: 12px;
}
.category-cta { flex-shrink: 0; }
.prod-grid { display: flex; flex-direction: column; gap: 16px; }
.prod-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.prod-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.prod-card-img {
  position: relative;
  width: 100%; height: 200px;
  overflow: hidden;
}
.prod-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.prod-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  z-index: 2;
}
.prod-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.prod-card-title { font-size: 18px; font-weight: 600; }
.prod-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.prod-card-tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.prod-tag {
  font-size: 11px;
  color: var(--text-secondary);
}
.prod-tag strong { color: var(--accent); margin-right: 4px; }
.prod-inquiry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.prod-inquiry-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
}
.prod-detail-link {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.prod-detail-link:hover { color: var(--accent); }

/* ===== Quick FAQ ===== */
.quick-faq { padding: var(--section-pad-y) var(--section-pad-x); }
.quick-faq-row {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.quick-faq-item {
  flex: 1;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.quick-faq-item strong { color: var(--text-primary); }

/* ===== Products responsive ===== */
@media (max-width: 1200px) {
  .prod-row { grid-template-columns: repeat(2, 1fr); }
  .trust-row { flex-wrap: wrap; }
  .trust-item { min-width: 45%; margin-bottom: 20px; }
  .trust-divider:nth-child(4n) { display: none; }
  .quick-faq-row { flex-direction: column; }
}
@media (max-width: 768px) {
  .prod-row { grid-template-columns: 1fr; }
  .trust-item { min-width: 100%; }
  .trust-divider { display: none; }
  .category-header { flex-direction: column; align-items: flex-start; }
}

/* ===== Capabilities Page ===== */
.cap-section,
.why-section,
.process-section,
.global-section { padding: var(--section-pad-y) var(--section-pad-x); }
.why-section { background: var(--bg-card); }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.cap-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,162,78,0.2);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cap-card-img {
  width: 100%; height: 200px;
  overflow: hidden;
}
.cap-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cap-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.cap-card-title {
  font-size: 20px;
  font-weight: 700;
}
.cap-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.cap-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.cap-card-features li {
  font-size: 13px;
  color: var(--text-dim);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.why-card {
  background: var(--bg-primary);
  border: 1px solid rgba(212,162,78,0.25);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-card-title {
  font-size: 17px;
  font-weight: 700;
}
.why-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.why-card-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}

.global-stats-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,162,78,0.2);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.global-big-num {
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.global-label {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}
.global-regions {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}

.process-section { background: var(--bg-card); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.process-card {
  background: var(--bg-primary);
  border: 1px solid rgba(212,162,78,0.15);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.process-title {
  font-size: 18px;
  font-weight: 700;
}
.process-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.process-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-top: auto;
}

/* ===== Quality Page ===== */
.qc-section,
.test-section,
.certs-section { padding: var(--section-pad-y) var(--section-pad-x); }
.test-section,
.certs-section { background: var(--bg-card); }

.qc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.qc-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,162,78,0.2);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qc-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.qc-title {
  font-size: 18px;
  font-weight: 700;
}
.qc-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.test-card {
  background: var(--bg-primary);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.test-card-img {
  width: 100%; height: 180px;
  overflow: hidden;
}
.test-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.test-card-body {
  padding: 20px;
}
.test-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.test-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.certs-section { padding: var(--section-pad-y) var(--section-pad-x); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.cert-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,162,78,0.2);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cert-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}
.cert-desc {
  font-size: 12px;
  color: var(--text-secondary);
  max-width: 220px;
  line-height: 1.5;
}

/* ===== Evidence Center ===== */
.evidence-identity,
.evidence-roles,
.evidence-controls,
.evidence-matrix,
.evidence-compliance,
.evidence-downloads { padding: var(--section-pad-y) var(--section-pad-x); }
.evidence-roles,
.evidence-matrix,
.evidence-downloads { background: var(--bg-card); }
.evidence-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.evidence-fact-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,162,78,0.22);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.evidence-fact-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.evidence-fact-card strong { font-size: 20px; line-height: 1.35; }
.evidence-fact-card p { color: var(--text-secondary); font-size: 13px; line-height: 1.6; }
.evidence-role-grid { margin-top: 36px; }
.evidence-role-grid .method-icon {
  color: var(--accent);
  font-size: 18px;
  font-weight: 800;
}
.resources-hub-section,
.resources-tool-section { padding: var(--section-pad-y) var(--section-pad-x); }
.resources-tool-section { background: var(--bg-card); }
.resources-hub-grid { margin-top: 36px; }
.resources-hub-grid .method-icon {
  color: var(--accent);
  font-size: 18px;
  font-weight: 800;
}
.resources-hub-grid .method-contact { margin-top: auto; }
.evidence-controls .qc-card { background: var(--bg-card); }
.evidence-matrix .spec-table-wrapper { margin-top: 36px; }
.evidence-table th:nth-child(1) { width: 20%; }
.evidence-table th:nth-child(2) { width: 47%; }
.evidence-download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border: 1px solid rgba(212,162,78,0.25);
  border-radius: 14px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.evidence-download-panel > div:first-child { max-width: 760px; }
.evidence-download-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-width: 260px;
}
.evidence-official-links {
  margin-top: 28px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.7;
}
.evidence-official-links a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.evidence-inline-link,
.evidence-section-link a { color: var(--accent); font-weight: 600; }
.evidence-section-link {
  margin-top: 28px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
.hero-microcopy {
  max-width: 680px;
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .evidence-download-panel { flex-direction: column; align-items: flex-start; }
  .evidence-download-actions { width: 100%; min-width: 0; }
}
@media (max-width: 768px) {
  .evidence-fact-grid { grid-template-columns: 1fr; }
  .evidence-fact-card { padding: 22px; }
  .evidence-download-panel { padding-top: 28px; padding-bottom: 28px; }
}

/* ===== Contact Page ===== */
.contact-hero {
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-hero .hero-content { text-align: center; }
.contact-hero .hero-title {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact-hero .hero-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.contact-sla-row {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.contact-sla-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.contact-sla-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.contact-sla-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.contact-methods { padding: 50px var(--section-pad-x); }
.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.method-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,162,78,0.25);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.method-icon {
  width: 56px; height: 56px;
  background: rgba(212,162,78,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-title {
  font-size: 22px;
  font-weight: 700;
}
.method-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.method-contact {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  overflow-wrap: anywhere;
}
.method-sla {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.form-section { padding: 60px var(--section-pad-x); background: var(--bg-card); }
.form-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.form-main {
  flex: 1; min-width: 0;
}
.form-sidebar {
  width: 340px; flex-shrink: 0;
}
.form-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.privacy-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-primary);
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-primary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-primary);
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #666; }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select { appearance: auto; }
.form-field-help { color: var(--text-secondary); font-size: 11px; line-height: 1.55; }
.evidence-form-helper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(212,162,78,0.09);
  border: 1px solid rgba(212,162,78,0.22);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.5;
}
.evidence-form-helper a { color: var(--accent); font-weight: 600; }
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.form-submit-note {
  font-size: 12px;
  color: var(--text-secondary);
}
.form-success {
  padding: 16px;
  background: rgba(212,162,78,0.1);
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 500;
  margin-top: 16px;
}
.form-error {
  padding: 16px;
  background: rgba(231,76,60,0.1);
  border: 1px solid #e74c3c;
  border-radius: 8px;
  color: #ff8f83;
  font-weight: 500;
  margin-top: 16px;
}

.sidebar-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.office-card {
  background: var(--bg-primary);
  border: 1px solid rgba(212,162,78,0.2);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  min-width: 0;
  overflow-wrap: anywhere;
}
.office-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
}
.office-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.office-addr {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.office-hours {
  font-size: 12px;
  color: var(--text-dim);
}
.office-wa-note {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== Capabilities + Quality + Contact Responsive ===== */
@media (max-width: 1200px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .qc-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .methods-grid { grid-template-columns: 1fr; }
  .form-layout { flex-direction: column; }
  .form-sidebar { width: 100%; }
}
@media (max-width: 768px) {
  .cap-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .qc-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .global-big-num { font-size: 48px; }
  .form-row { flex-direction: column; }
  .contact-sla-row { gap: 24px; }
  .contact-sla-num { font-size: 22px; }
  .evidence-form-helper { flex-direction: column; align-items: flex-start; }
}

/* ===== Product Detail Pages (Reusable) ===== */
.prod-detail-section { padding: var(--section-pad-y) var(--section-pad-x); }
.prod-detail-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}
.prod-detail-image {
  width: 520px; flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
.prod-detail-image img {
  width: 100%; height: 400px;
  object-fit: cover;
}
.prod-detail-info {
  flex: 1; min-width: 0;
}
.prod-detail-intro {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.65; margin: 16px 0 24px;
}
.spec-callout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.spec-callout-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid rgba(212,162,78,0.15);
}
.spec-callout-item .spec-icon {
  color: var(--accent); font-size: 16px;
  flex-shrink: 0; line-height: 1.4;
}
.spec-callout-item strong { display: block; font-size: 13px; margin-bottom: 2px; }
.spec-callout-item span { font-size: 11px; color: var(--text-secondary); }

.spec-section { padding: var(--section-pad-y) var(--section-pad-x); background: var(--bg-card); }
.spec-table-wrapper { overflow-x: auto; margin-top: 32px; }
.spec-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.spec-table thead { background: rgba(212,162,78,0.08); }
.spec-table th {
  padding: 16px 20px; text-align: left;
  font-size: 13px; font-weight: 600;
  border-bottom: 1px solid rgba(212,162,78,0.2);
  color: var(--text-primary);
}
.spec-table th:first-child { width: 28%; }
.spec-table .spec-model { text-align: center; }
.spec-table .spec-tier { font-size: 11px; font-weight: 400; color: var(--text-secondary); }
.spec-table .spec-tier-premium { color: var(--accent); }
.spec-table td {
  padding: 14px 20px; font-size: 13px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  line-height: 1.5;
}
.spec-table td:first-child { font-weight: 600; color: var(--text-primary); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-note { font-size: 12px; color: var(--text-dim); margin-top: 12px; text-align: center; }

.oem-section { padding: var(--section-pad-y) var(--section-pad-x); background: var(--bg-card); }
.oem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 32px;
}
.oem-card {
  background: var(--bg-primary);
  border: 1px solid rgba(212,162,78,0.2);
  border-radius: 10px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.oem-card h4 { font-size: 16px; font-weight: 700; }
.oem-card p { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

.buyers-section { padding: var(--section-pad-y) var(--section-pad-x); }
.buyers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 32px;
}
.buyer-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,162,78,0.15);
  border-radius: 10px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.buyer-card h4 { font-size: 17px; font-weight: 700; }
.buyer-card p { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
.buyer-tag {
  font-size: 11px; font-weight: 600; color: var(--accent);
  margin-top: auto; letter-spacing: 0.5px;
}

.qc-strip { padding: 50px var(--section-pad-x); background: var(--bg-card); }
.qc-strip-row {
  display: flex; background: var(--bg-primary);
  border-radius: 12px; padding: 36px 40px;
  align-items: center; justify-content: space-around;
}
.qc-strip-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.qc-strip-num { font-size: 28px; font-weight: 700; color: var(--accent); }
.qc-strip-label { font-size: 13px; color: var(--text-secondary); }
.qc-strip-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

@media (max-width: 1200px) {
  .prod-detail-layout { flex-direction: column; }
  .prod-detail-image { width: 100%; }
  .oem-grid { grid-template-columns: repeat(2, 1fr); }
  .buyers-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-callout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .oem-grid { grid-template-columns: 1fr; }
  .buyers-grid { grid-template-columns: 1fr; }
  .qc-strip-row { flex-wrap: wrap; gap: 20px; }
  .qc-strip-divider { display: none; }
}

/* ===== Product Detail v3 Styles ===== */
.price-bar { padding: 0 var(--section-pad-x); margin: 0; }
.price-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-primary); border: 1px solid rgba(212,162,78,0.25); border-radius: 10px;
  padding: 28px 36px; gap: 32px; flex-wrap: wrap;
}
.price-bar-left { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 0; }
.price-bar-left .price-bar-icon { color: var(--accent); font-size: 22px; flex-shrink: 0; }
.price-bar-left strong { display: block; font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.price-bar-left span { font-size: 13px; color: var(--accent); }
.price-bar-right { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.price-bar-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; background: var(--accent); color: var(--bg-primary);
  border-radius: 6px; font-size: 13px; font-weight: 600; transition: opacity 0.2s;
}
.price-bar-btn:hover { opacity: 0.85; }
.price-bar-right span { font-size: 11px; color: var(--text-dim); }

.trust-minimal { padding: 30px var(--section-pad-x); text-align: center; }
.trust-minimal-label { font-size: 10px; font-weight: 600; color: #666; letter-spacing: 2px; margin-bottom: 20px; }
.trust-minimal-row {
  display: flex; justify-content: space-evenly; align-items: center;
  max-width: 1100px; margin: 0 auto; flex-wrap: wrap; gap: 24px;
}
.trust-minimal-row span { font-size: 16px; font-weight: 600; color: #888; letter-spacing: 2px; }
.trust-minimal-line { width: 80px; height: 1px; background: rgba(212,162,78,0.25); margin: 20px auto 0; }

.prod-gallery { width: 520px; flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; }
.prod-gallery-main { width: 520px; height: 340px; border-radius: 12px; overflow: hidden; background: var(--bg-card); }
.prod-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.prod-gallery-thumbs { display: flex; gap: 12px; }
.prod-gallery-thumbs img { width: 118px; height: 96px; border-radius: 8px; object-fit: cover; background: var(--bg-card); }

.spec-section .spec-table-wrapper { overflow-x: auto; }
.spec-section .spec-table { border: none; }
.spec-section .spec-table thead { background: rgba(212,162,78,0.06); }
.spec-section .spec-table th { font-size: 11px; color: var(--accent); letter-spacing: 1.5px; border-bottom: 1px solid rgba(212,162,78,0.2); }
.spec-section .spec-table th:first-child { text-align: center; width: 28%; }
.spec-section .spec-table td { border-bottom: 1px solid rgba(255,255,255,0.04); }
.spec-section .spec-table td:first-child { text-align: center; }
.spec-section .spec-table td strong { color: var(--accent); }
.spec-section .spec-table tr.alt td { background: rgba(255,255,255,0.02); }
.spec-section .spec-table tr:last-child td { border-bottom: none; }

.custom-section { padding: var(--section-pad-y) var(--section-pad-x); background: var(--bg-card); }
.custom-sub { font-size: 15px; color: var(--text-secondary); max-width: 800px; line-height: 1.65; margin: 12px 0 32px; }
.custom-grid-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.custom-card {
  background: var(--bg-primary); border: 1px solid rgba(212,162,78,0.3); border-radius: 12px;
  padding: 32px; display: flex; flex-direction: column; gap: 14px;
}
.custom-badge { display: inline-block; padding: 4px 10px; background: rgba(212,162,78,0.12); color: var(--accent); font-size: 10px; font-weight: 600; letter-spacing: 1px; border-radius: 4px; width: fit-content; }
.custom-card h4 { font-size: 20px; font-weight: 700; }
.custom-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.custom-grid-bot { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.custom-commit {
  background: var(--bg-primary); border: 1px solid rgba(212,162,78,0.15); border-radius: 12px;
  padding: 32px; display: flex; flex-direction: column; gap: 10px;
}
.custom-commit-icon { color: var(--accent); font-size: 15px; }
.custom-commit h4 { font-size: 18px; font-weight: 700; }
.custom-commit p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

@media (max-width: 1200px) {
  .prod-gallery { width: 100%; flex-shrink: 1; }
  .prod-gallery-main { width: 100%; height: 300px; }
  .prod-gallery-thumbs img { width: 32%; height: 90px; }
  .custom-grid-top { grid-template-columns: 1fr; }
  .custom-grid-bot { grid-template-columns: 1fr; }
  .price-bar-inner { flex-direction: column; text-align: center; }
  .trust-minimal-row { gap: 16px; }
  .trust-minimal-row span { font-size: 13px; }
}
@media (max-width: 768px) {
  .prod-gallery-main { height: 220px; }
  .prod-gallery-thumbs img { height: 70px; }
}

/* ===== Hero Stats Fix ===== */
.hero-stats { justify-content: center; padding: 16px 0 8px; }
.hero-stat { align-items: center; gap: 6px; }
.hero-stat-num { line-height: 1.15; }
.hero-stat-label { line-height: 1.3; font-size: 12px; }
.hero-stat-divider { margin: 0 8px; }

/* ===== Price Bar right fix ===== */
.price-bar-right { gap: 10px; padding-top: 4px; padding-bottom: 4px; }

/* ===== v1.0.22 Price Bar & Hero Overlay Fix ===== */
.price-bar-inner { border: none; }
.hero-overlay { opacity: 0.7; }
.price-bar-left strong { color: var(--text-primary); }
.price-bar-left span { color: var(--accent); font-weight: 500; }

/* ===== v1.0.23 Price Bar Centering ===== */
.price-bar { max-width: 1320px; margin: 0 auto; padding: 0; }
.price-bar-inner { padding: 28px 60px; }

/* ===== Related Products ===== */
.related-products { padding: 60px var(--section-pad-x); background: var(--bg-primary); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1320px; margin: 24px auto 0; }
.related-card { background: var(--bg-card); border-radius: 10px; padding: 24px; display: flex; flex-direction: column; gap: 6px; transition: border-color 0.2s; border: 1px solid transparent; }
.related-card:hover { border-color: rgba(212,162,78,0.3); }
.related-card h4 { font-size: 16px; font-weight: 700; }
.related-card span { font-size: 12px; color: var(--accent); }
@media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } }
/* Gallery thumb active */
.prod-gallery-thumbs img { cursor: pointer; opacity: 0.65; transition: opacity 0.2s, border-color 0.2s; border: 2px solid transparent; }
.prod-gallery-thumbs img:hover, .prod-gallery-thumbs img.active { opacity: 1; border-color: var(--accent); }
.prod-gallery-main img { transition: opacity 0.3s; }

/* ===== Blog ===== */
.hero-search { display:flex;margin:8px auto 0;align-items:center;background:#fff;border-radius:8px;overflow:hidden;width:100%;max-width:720px;margin-top:8px; }
.hero-search input { flex:1;border:none;padding:16px 20px;font-size:15px;background:transparent;color:#1A1A1A;outline:none;font-family:inherit; }
.hero-search button { background:var(--accent);color:#1A1A1A;border:none;padding:16px 28px;font-size:14px;font-weight:600;cursor:pointer;font-family:inherit;white-space:nowrap; }
.blog-filters { max-width:1320px;margin:0 auto;padding:16px 60px;display:flex;flex-direction:column;gap:14px; }
.blog-filter-row { display:flex;align-items:center;gap:12px;flex-wrap:wrap; }
.filter-label { font-size:12px;font-weight:600;color:#888;min-width:50px; }
.filter-pill { font-size:11px;font-weight:600;padding:6px 14px;border-radius:100px;border:1px solid rgba(255,255,255,0.12);color:var(--text-dim);transition:all .15s; }
.filter-pill:hover,.filter-pill.active { border-color:var(--accent);color:var(--accent); }
.filter-dropdown { font-size:11px;padding:6px 14px;border-radius:100px;border:1px solid rgba(255,255,255,0.12);background:transparent;color:var(--text-dim);cursor:pointer;font-family:inherit; }
.blog-layout { display:flex;gap:40px;max-width:1320px;margin:0 auto;padding:40px 60px 60px; }
.blog-posts { flex:1;min-width:0; }
.blog-card { display:flex;gap:24px;background:var(--bg-card);border-radius:10px;overflow:hidden;margin-bottom:24px; }
.blog-card-img { width:300px;min-height:200px;flex-shrink:0; }
.blog-card-img img,.blog-card-placeholder { width:100%;height:100%;object-fit:cover; }
.blog-card-placeholder { background:#2A241A; }
.blog-card-body { flex:1;padding:24px;display:flex;flex-direction:column;gap:10px; }
.blog-card-meta { display:flex;align-items:center;gap:8px;flex-wrap:wrap; }
.blog-tag { font-size:10px;font-weight:600;color:var(--accent); }
.blog-prod { font-size:10px;font-weight:600;color:var(--text-dim); }
.blog-dot { font-size:10px;color:#555; }
.blog-read { font-size:10px;color:var(--text-dim); }
.blog-card-body h2,.blog-card-body h3 { font-size:22px;line-height:1.3;margin:0; }
.blog-card-body h2 a,.blog-card-body h3 a { color:#fff; }
.blog-card-body p { font-size:14px;color:var(--text-secondary);line-height:1.6;margin:0; }
.blog-empty { text-align:center;color:var(--text-dim);padding:80px 0; }
.blog-pagination { display:flex;align-items:center;justify-content:center;gap:8px;margin-top:32px; }
.blog-per-page { display:flex;align-items:center;gap:6px;font-size:11px;color:var(--text-dim);margin-right:16px; }
.blog-per-page select { font-size:11px;padding:4px 10px;border-radius:4px;border:1px solid rgba(255,255,255,0.12);background:transparent;color:var(--text-dim);cursor:pointer;font-family:inherit; }
.blog-pagination .page-numbers { display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:4px;font-size:12px;color:var(--text-dim); }
.blog-pagination .page-numbers.current { background:var(--accent);color:#1A1A1A;font-weight:600; }
.blog-pagination .prev,.blog-pagination .next { width:auto;padding:0 12px; }
.blog-sidebar { width:360px;flex-shrink:0;display:flex;flex-direction:column;gap:24px; }
.sidebar-box { background:var(--bg-card);border-radius:10px;padding:24px;display:flex;flex-direction:column;gap:12px; }
.sidebar-box h2,.sidebar-box h4 { font-size:14px;font-weight:700; }
.sidebar-box p { font-size:12px;color:var(--text-secondary);line-height:1.55; }
.sidebar-box a { font-size:12px;color:var(--text-dim);font-weight:600;line-height:1.4;text-decoration:none;transition:color .15s; }
.sidebar-box a:hover { color:var(--accent); }
.sidebar-resources { background:#2A241A; }
.sidebar-resources a { color:var(--accent); }
.sidebar-newsletter p { font-size:11px;color:var(--text-dim);line-height:1.5; }
.pop-link { padding:4px 0; }
@media (max-width:900px) { .blog-layout { flex-direction:column;padding:20px; } .blog-sidebar { width:100%; } .blog-card { flex-direction:column; } .blog-card-img { width:100%;height:200px; } .blog-filters { padding:16px 20px; } }
.post-content h2 { font-size:28px;margin:32px 0 16px;color:#fff; }
.post-content h3 { font-size:22px;margin:24px 0 12px; }
.post-content p { margin:0 0 16px; }
.post-content ul,.post-content ol { padding-left:24px;margin:0 0 16px; }
.post-content blockquote { border-left:3px solid var(--accent);padding-left:20px;margin:20px 0;color:var(--text-dim);font-style:italic; }
.post-content img { max-width:100%;border-radius:8px;margin:20px 0; }
.breadcrumb-inline { font-size:12px;color:#888;margin:0; }
.breadcrumb-inline a { color:#888;text-decoration:none; }
.breadcrumb-inline a:hover { color:var(--accent); }
.post-hero-meta { display:flex;align-items:center;gap:10px;font-size:13px;color:#B0B0B0; }
.post-avatar { width:40px;height:40px;border-radius:50%;background:var(--accent);flex-shrink:0; }
.post-progress { width:100%;height:3px;background:#333;position:sticky;top:0;z-index:100; }
.post-progress-fill { height:3px;background:var(--accent);width:0;transition:width .1s; }
.post-article { max-width:840px;margin:0 auto;padding:40px 20px;display:flex;flex-direction:column;gap:28px; }
.post-lead { font-size:18px;color:#C0C0C0;line-height:1.7; }
.post-toc { background:#242424;border-radius:10px;padding:24px;display:flex;flex-direction:column;gap:10px; }
.post-toc-title { font-size:14px;font-weight:700;color:#fff; }
.post-toc-link { font-size:13px;color:#888;line-height:1.6;text-decoration:none; }
.post-toc-link:first-of-type { color:var(--accent);font-weight:600; }
.post-stats { display:grid;grid-template-columns:repeat(3,1fr);gap:0;background:#242424;border-radius:10px;overflow:hidden; }
.post-stat { padding:28px;text-align:center;display:flex;flex-direction:column;gap:6px; }
.post-stat-num { font-size:36px;font-weight:700;color:var(--accent); }
.post-stat-label { font-size:11px;color:#B0B0B0;line-height:1.5; }
.post-content h2 { font-size:28px;color:#fff;margin:16px 0 12px; }
.post-content p { font-size:16px;color:#B0B0B0;line-height:1.8;margin:0 0 16px; }
.post-gallery figure { margin:0; }
.post-gallery img { width:100%;border-radius:8px; }
.post-gallery figcaption { font-size:12px;color:#666;margin-top:8px; }
.post-enhancements { display:flex;flex-direction:column;gap:28px; }
.post-enhance-label { font-size:13px;color:#888;font-weight:600;letter-spacing:1.5px;text-transform:uppercase; }
.post-keytakeaway { background:#2A241A;border-radius:8px;padding:20px;display:flex;align-items:center;gap:12px; }
.post-keytakeaway span { font-size:10px;color:var(--accent);font-weight:600;letter-spacing:1.5px;white-space:nowrap; }
.post-keytakeaway p { font-size:14px;color:#fff;font-weight:600;line-height:1.5;margin:0; }
.post-midcta { background:#2A241A;border-radius:10px;padding:24px;display:flex;align-items:center;gap:20px; }
.post-midcta span { flex:1;font-size:14px;color:#fff;font-weight:600; }
.btn-outline { border:1px solid var(--accent);color:var(--accent);padding:10px 24px;border-radius:100px;font-size:13px;font-weight:600;text-decoration:none;white-space:nowrap; }
.btn-outline:hover { background:var(--accent);color:#1A1A1A; }
.post-comparison strong { color:#fff;font-size:20px; }
.post-compare-row { display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:12px; }
.post-compare-card { background:#242424;padding:20px;border-radius:8px;display:flex;flex-direction:column;gap:8px; }
.compare-label { font-size:13px;font-weight:600;letter-spacing:1px; }
.post-comparison .post-compare-card:first-child .compare-label { color:var(--accent); }
.post-comparison .post-compare-card:last-child .compare-label { color:#888; }
.post-compare-card strong { font-size:14px; }
.post-compare-card p { font-size:12px;color:#B0B0B0;line-height:1.6;margin:0; }
.post-blockquote { border-left:3px solid var(--accent);padding-left:24px;margin:0; }
.post-blockquote p { font-size:16px;color:#C0C0C0;font-style:italic;line-height:1.7;margin:0 0 8px; }
.post-blockquote cite { font-size:13px;color:#888;font-weight:600;font-style:normal; }
.post-testimonial { background:#242424;border-radius:10px;padding:28px;display:flex;flex-direction:column;gap:8px; }
.post-testimonial p { font-size:15px;color:#C0C0C0;font-style:italic;line-height:1.7;margin:0; }
.post-testimonial span { font-size:13px;color:#888;font-weight:600; }
.post-faq { display:flex;flex-direction:column;gap:16px; }
.post-faq h3 { font-size:24px;color:#fff;margin:0 0 8px; }
.post-faq-item { background:#242424;border-radius:8px;padding:20px; }
.post-faq-item strong { font-size:15px;color:#fff;display:block;margin-bottom:6px; }
.post-faq-item p { font-size:14px;color:#B0B0B0;line-height:1.7;margin:0; }
.post-downloadcta { background:#2A241A;border-radius:10px;padding:32px;display:flex;align-items:center;gap:24px; }
.post-downloadcta div { flex:1; }
.post-downloadcta strong { font-size:20px;color:#fff; }
.post-downloadcta p { font-size:13px;color:#B0B0B0;line-height:1.5;margin:6px 0 0; }
.post-footer-meta { display:flex;flex-direction:column;gap:20px; }
.post-footer-tags { display:flex;gap:8px;flex-wrap:wrap; }
.post-footer-tags a { font-size:11px;padding:4px 12px;background:#242424;border-radius:100px;color:#B0B0B0;text-decoration:none; }
.post-footer-tags a:hover { color:var(--accent); }
.post-footer-share { display:flex;align-items:center;gap:16px;font-size:12px;color:#888; }
.post-footer-share a { color:var(--accent);font-weight:600;text-decoration:none; }
.post-divider { height:1px;background:#333; }
.post-nav { display:flex;justify-content:space-between;align-items:center;padding:30px 60px;background:#242424;max-width:1440px;margin:0 auto; }
.post-nav a { font-size:13px;color:#B0B0B0;text-decoration:none; }
.post-nav a:hover { color:var(--accent); }
.post-nav span:nth-child(1) { width:40%; }
.post-nav span:nth-child(3) { width:40%;text-align:right; }
.related-grid { display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:24px; }
.related-card { display:flex;gap:16px;background:var(--bg-card);padding:20px;border-radius:8px;align-items:center;text-decoration:none; }
.related-thumb { width:80px;height:60px;border-radius:4px;overflow:hidden;flex-shrink:0; }
.related-thumb img { width:100%;height:100%;object-fit:cover; }
.related-body { display:flex;flex-direction:column;gap:4px; }
.related-body span { font-size:10px;color:var(--accent);font-weight:600; }
.related-body strong { font-size:14px;color:#fff;line-height:1.3; }
@media (max-width:768px) {
  .post-nav { flex-direction:column;gap:12px;padding:20px; }
  .post-nav span { width:100%!important;text-align:center!important; }
  .related-grid { grid-template-columns:1fr; }
  .post-stats { grid-template-columns:1fr; }
  .post-compare-row { grid-template-columns:1fr; }
}
.cookie-banner { display:none;position:fixed;bottom:0;left:0;right:0;z-index:9999;background:#1A1A1A;border-top:1px solid #333; }
.cookie-banner-inner { max-width:1320px;margin:0 auto;display:flex;align-items:center;gap:32px;padding:20px 60px; }
.cookie-banner-text { flex:1;display:flex;flex-direction:column;gap:4px; }
.cookie-banner-text strong { font-size:13px;color:#fff; }
.cookie-banner-text span { font-size:12px;color:#888; }
.cookie-banner-text a { color:var(--accent);text-decoration:underline; }
.cookie-banner-btns { display:flex;gap:12px;white-space:nowrap; }
.cookie-btn { padding:10px 24px;border-radius:6px;font-size:13px;font-weight:600;cursor:pointer;border:none;font-family:inherit; }
.cookie-btn-primary { background:var(--accent);color:#1A1A1A; }
.cookie-btn-secondary { background:transparent;border:1px solid #555;color:#B0B0B0; }
.footer-address { display:block;font-style:normal;font-size:11px;color:#A0A0A0;margin-top:4px; }
.skip-link { position:absolute;top:-9999px;left:20px;background:var(--accent);color:#1A1A1A;padding:8px 16px;border-radius:4px;font-weight:600;z-index:10000;text-decoration:none; }
.skip-link:focus { top:10px; }
@media (max-width:768px) { .cookie-banner-inner { flex-direction:column;gap:16px;padding:16px 20px; } }
.logo-wall { text-align:center;margin-top:24px; }
.logo-wall-label { font-size:12px;color:#666;text-transform:uppercase;letter-spacing:1.5px;display:block;margin-bottom:16px; }
.logo-wall-grid { display:flex;justify-content:center;gap:24px;flex-wrap:wrap; }
.logo-wall-item { background:#242424;border-radius:8px;padding:16px 24px;min-width:130px;text-align:center; }
.logo-wall-item strong { display:block;font-size:14px;color:#fff;margin-bottom:2px; }
.logo-wall-item small { font-size:10px;color:#888; }
@media (max-width:768px) { .logo-wall-grid { gap:12px; } .logo-wall-item { min-width:100px;padding:12px 16px; } }
.hero-breadcrumb { font-size:12px;color:#888;margin:0 0 4px; }
.hero-breadcrumb a { color:#888;text-decoration:none; }
.hero-breadcrumb a:hover { color:var(--accent); }
.hero-breadcrumb span { color:#D4A24E; }
.haisen-turnstile { margin:4px 0 16px;max-width:100%; }
.haisen-turnstile .cf-turnstile { max-width:100%; }
.turnstile-noscript { margin:0;padding:12px;border:1px solid #6B4B20;border-radius:6px;background:#2A241A;color:#D8C29A;font-size:12px;line-height:1.5; }
.turnstile-noscript a { color:var(--accent); }
.price-anchor { background:var(--accent);color:#1A1A1A;font-size:12px;font-weight:700;padding:2px 10px;border-radius:100px;display:inline-block;margin-left:10px; }
.biz-reg { font-size:11px;color:#A0A0A0;margin-top:4px; }
