.elementor-6369 .elementor-element.elementor-element-6f3d137{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1b76c1a */:root {
  --navy: #0a1628;
  --blue: #0066cc;
  --blue-accent: #3d9bff;
  --cyan: #6EC1E4;
  --cyan-text: #0077a3;
  --white: #ffffff;
  --text-body: #1a2840;
  --text-muted: #6b7280;
  --bg-grey: #f4f7fb;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --border-mid: #d1dbe8;
  --accent-blue: #0066cc;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 36px;
}
.hero-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-breadcrumb a:hover { color: var(--accent-blue); }
.hero-breadcrumb span:nth-child(2) { color: var(--text-light); }
.hero-breadcrumb span:last-child { color: var(--navy); font-weight: 500; }

/* HERO — white */
.hero {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--border);
}
.hero::before, .hero::after { display: none; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'JetBrains Mono Mono', monospace;
  font-size: 11px;
  color: var(--cyan-text);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--cyan-text); }
.hero-sub {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 560px;
}
.hero-para {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  background: #3399b8;
  color: #fff;
  border: none;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(110,193,228,0.4); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-mid);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--accent-blue); color: var(--accent-blue); background: #eff6ff; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-item::before {
  content: '✓';
  color: var(--cyan-text);
  font-weight: 700;
  font-size: 12px;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.hero-img-badge-row {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.badge-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.badge-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.5px;
}
.hero-img-badge-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* SECTION GENERIC */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent-blue);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--accent-blue); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  color: var(--navy);
}
.section-title.light { color: var(--navy); }
.section-intro {
  font-size: 16px;
  color: #4a5568;
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.section-intro.light { color: #4a5568; }
.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto 48px; }

/* SECTION OVERVIEW — Plan B: left SVG diagram, right text */
.section-overview { background: var(--bg-grey); }
.overview-grid-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  direction: rtl;
}
.overview-text-col, .overview-photo-col { direction: ltr; }

/* LEFT: photo column */
.overview-photo-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.overview-photo-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(10,22,40,0.13);
  aspect-ratio: 4/3;
}
.overview-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.overview-photo-main:hover .overview-img-main { transform: scale(1.03); }

/* Floating stat chips */
.overview-chip {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.8);
}
.overview-chip-tl { top: 16px; left: 16px; }
.overview-chip-br { bottom: 16px; right: 16px; }
.chip-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.chip-label {
  font-size: 10px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 3px;
  letter-spacing: 0.4px;
}

/* Two thumbnail photos below */
.overview-photo-thumb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.overview-img-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 16px rgba(10,22,40,0.09);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.overview-img-thumb:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(10,22,40,0.14); }

/* Text column */
.overview-text-col {}
.overview-body {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 28px;
}
.overview-body p + p { margin-top: 14px; }

/* Key points — 2-col icon list */
.op-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 28px;
}
.op-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.op-list-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.op-list li div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.op-list strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.3;
}
.op-list span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.op-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.op-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transform: translateY(-2px);
  border-color: #c7d9f0;
}
.op-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.op-card strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  display: block;
  margin-top: 2px;
}
.op-card span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .overview-grid-b { grid-template-columns: 1fr; gap: 36px; }
  .overview-photo-thumb-row { display: none; }
  .why-swiss-header { grid-template-columns: 1fr; gap: 16px; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .why-compare-items { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* WHY SWISS — white */
.section-dark {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark::before { display: none; }

.why-swiss-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}
.why-swiss-lead {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.8;
  padding-bottom: 4px;
}

/* 6 trigger cards in 3-col grid */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.why-card {
  background: var(--bg-grey);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.why-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
  border-color: #c7d9f0;
  background: var(--white);
}
.why-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #d1dbe8;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 28px;
}
.why-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.why-card-body p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
}
.why-card-body strong { color: var(--navy); font-weight: 700; }

/* Bottom comparison bar */
.why-compare-bar {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 32px;
}
.why-compare-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.why-compare-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.why-ci {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-ci:first-child { padding-left: 0; }
.why-ci:last-child { border-right: none; }
.why-ci-topic {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  font-weight: 500;
}
.why-ci-scores {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wci-bad {
  font-size: 12px;
  font-weight: 600;
  color: rgba(248,113,113,0.85);
  font-family: 'JetBrains Mono', monospace;
}
.wci-mid {
  font-size: 12px;
  font-weight: 600;
  color: rgba(251,191,36,0.85);
  font-family: 'JetBrains Mono', monospace;
}
.wci-good {
  font-size: 12px;
  font-weight: 600;
  color: #6EC1E4;
  font-family: 'JetBrains Mono', monospace;
}

/* CAPABILITIES — grey */
.section-light { background: var(--bg-grey); }
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.cap-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: all 0.2s;
}
.cap-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); border-color: #93c5fd; }
.cap-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent-blue);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.cap-card h4 { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.cap-card p { font-size: 13px; color: #6b7280; line-height: 1.6; }
.cap-brand {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  padding: 28px 36px;
  font-size: 15px;
  line-height: 1.75;
  border-left: 4px solid var(--cyan);
}

/* PROCESS — white */
.section-white { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--cyan) 100%);
  z-index: 0;
}
.step { padding: 0 20px 40px; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 3px solid var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  margin: 0 auto 20px;
}
.step:nth-child(3n-1) .step-num { border-color: var(--blue-accent); }
.step:nth-child(3n) .step-num { border-color: var(--cyan); }
.step h4 { text-align: center; font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 10px; }
.step p { text-align: center; font-size: 13px; color: #6b7280; line-height: 1.6; }
.process-steps-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  padding-top: 40px;
}

/* MATERIALS — filter tabs + cards */
.mat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.mat-tab {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.mat-tab:hover { border-color: var(--cyan); color: var(--navy); }
.mat-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.mat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.mat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.mat-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: #c7d9f0;
}
.mat-swatch {
  width: 52px;
  flex-shrink: 0;
}
.mat-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mat-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.mat-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.mat-card-body p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.55;
}
.mat-guidance {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  color: #1e40af;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* SURFACE FINISH — white */
.finish-dark { background: var(--white); position: relative; overflow: hidden; }
.finish-dark::before { display: none; }

.finish-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.fin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.fin-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
  border-color: #bfdbfe;
}
.fin-card-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fin-card-visual svg { width: 100%; height: 100%; }
.fin-card-body {
  padding: 20px 22px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fin-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.fin-card-body p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
}
.fin-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: gap 0.2s;
}
.fin-card-link:hover { gap: 8px; }
.finish-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* PARTS — grey (section-light already) */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.part-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.part-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
  border-color: #bfdbfe;
}
.part-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--bg-grey);
}
.part-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.part-card:hover .part-card-img img { transform: scale(1.05); }
.part-card-body {
  padding: 20px 20px 22px;
  border-top: 1px solid var(--border);
}
.part-card-body h4 {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.part-card-body p { font-size: 13px; color: #6b7280; line-height: 1.65; }
.parts-closing {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: #374151;
  padding: 20px 32px;
  background: #eff6ff;
  border-radius: 8px;
  border: 1px solid #bfdbfe;
}

/* IDEAL PROJECTS — white */
.ideal-dark { background: var(--white); position: relative; overflow: hidden; }
.ideal-dark::before { display: none; }
.ideal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}
.ideal-item {
  background: var(--bg-grey);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.2s;
}
.ideal-item:hover { background: #dbeafe; border-color: #93c5fd; }
.ideal-item::before { content: '◆'; color: var(--cyan-text); font-size: 10px; margin-top: 5px; flex-shrink: 0; }
.ideal-item span { font-size: 13px; color: #374151; line-height: 1.5; }

/* INDUSTRIES — grey (section-light) */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.industry-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
  border-color: #bfdbfe;
}
.ind-img-wrap {
  height: 180px;
  overflow: hidden;
  background: var(--bg-grey);
}
.ind-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.industry-card:hover .ind-img-wrap img { transform: scale(1.05); }
.ind-card-body {
  padding: 20px 20px 22px;
  border-top: 1px solid var(--border);
}
.ind-card-body h4 {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ind-card-body p { font-size: 13px; color: #6b7280; line-height: 1.6; }

/* QUALITY — white */
.quality-dark { background: var(--white); position: relative; overflow: hidden; }
.quality-dark::before { display: none; }

.quality-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}
.quality-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background 0.2s;
}
.quality-step:last-child { border-right: none; }
.quality-step:hover { background: #f8faff; }
.qs-icon {
  width: 52px;
  height: 52px;
  background: #EEF6FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qs-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
}
.quality-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.quality-step p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
  flex: 1;
}
.qs-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.qs-checks li {
  font-size: 12px;
  color: #4b5563;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.qs-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan-text);
  font-weight: 700;
  font-size: 11px;
}
.quality-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 13px;
  color: #1e40af;
  line-height: 1.6;
}

/* STATS BAR — grey */
.stats-bar {
  background: var(--bg-grey);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.stat-block-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block-val span { color: var(--cyan-text); }
.stat-block-label { font-size: 13px; color: var(--text-muted); }

/* FAQ — white */
/* FAQ — accordion */
.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-row { border-bottom: 1px solid var(--border); }
.faq-row:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  transition: background 0.15s;
}
.faq-question:hover { background: #f8faff; color:black; }
.faq-question[aria-expanded="true"] { color: #0066cc;; }
.faq-chevron {
  flex-shrink: 0;
  color:  #6b7280;
  transition: transform 0.25s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color:#0066cc;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  background: var(--bg-grey);
}
.faq-answer.open { max-height: 200px; padding: 18px 24px 22px; }
.faq-answer p { font-size: 14px; color: #4b5563; line-height: 1.75; }

/* 最强锁死：无论谁加 .active，背景永远纯白，文字永远深灰 */
.faq-question,
.faq-question.active,
.faq-question:focus,
.faq-question:hover,
.faq-row.faq-active .faq-question {
  background: #ffffff !important;
  color: #111827 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* 卡片边框背景不污染 */
.faq-row.faq-active {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
}

/* 箭头激活变蓝色 */
.faq-question.active .faq-chevron,
.faq-row.faq-active .faq-chevron {
  color: #2563eb !important;
}



/* FINAL CTA — #6EC1E4 */
.cta-final {
  background: #3399b8;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(0,0,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.cta-final-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-final h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.cta-final p { font-size: 16px; color: rgba(255,255,255,0.92); margin-bottom: 36px; line-height: 1.7; }
.cta-final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.btn-white {
  background: var(--white);
  color: #0a6a8a;
  border: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-white:hover { background: #f0f9ff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.15); }
.cta-trust-line { font-size: 13px; color: rgba(255,255,255,0.75); letter-spacing: 0.5px; }
/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.6s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }
.hero-image-wrap { animation: fadeUp 0.7s ease 0.3s both; }

/* DIVIDERS */
.section-divider { height: 1px; background: var(--border); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .overview-grid, .quality-steps { grid-template-columns: 1fr 1fr; }
  .quality-step { border-right: none; border-bottom: 1px solid var(--border); }
  .quality-step:last-child { border-bottom: none; }
  .caps-grid, .parts-grid, .industries-grid { grid-template-columns: 1fr 1fr; }
  .finish-cards { grid-template-columns: 1fr 1fr; }
  .materials-grid, .ideal-grid { grid-template-columns: 1fr 1fr; }
  .mat-cards { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .process-steps, .process-steps-row2 { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}/* End custom CSS */