/*
Theme Name: JointSource
Theme URI: https://jointsourcebio.com
Description: JointSource Biotechnology - Bone & Joint Ingredient Manufacturer
Author: JointSource
Template: astra
Version: 1.0.0
*/

/* ============================================================
   GLOBAL VARIABLES & RESET
   ============================================================ */
:root {
  --navy:       #0D2463;
  --navy-dark:  #081845;
  --navy-light: #1a3a8f;
  --gold:       #C9A84C;
  --gold-light: #e8c97a;
  --white:      #ffffff;
  --off-white:  #f8f9fb;
  --light-gray: #f0f2f5;
  --mid-gray:   #6b7280;
  --dark-gray:  #1f2937;
  --border:     #e5e7eb;
  --font-main:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-head:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(13,36,99,0.10);
  --shadow-lg:  0 8px 40px rgba(13,36,99,0.16);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-dark);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#js-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 20px 0;
}
#js-header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 8px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}
.site-logo img { height: 62px; width: auto; }

/* 文字 Logo */
.text-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.text-logo-main {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.text-logo-main span {
  color: var(--gold-light);
}
.text-logo-sub {
  font-family: var(--font-head);
  font-size: 8.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
/* 滚动后导航变深色时 logo 保持白色 */
#js-header.scrolled .text-logo-main { color: var(--white); }
#js-header.scrolled .text-logo-sub  { color: rgba(255,255,255,0.5); }

/* 旧版 logo-text 兼容 */
.site-logo .logo-text {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}
.site-logo .logo-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  display: block;
  margin-top: -2px;
}

/* Nav links */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,0.92);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 9px 22px !important;
  border-radius: 4px !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,24,69,0.82) 0%,
    rgba(13,36,99,0.65) 50%,
    rgba(8,24,69,0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 780px;
}
.hero-content h1 span { color: var(--gold-light); }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.hero-bullets li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23081845' d='M13.5 3.5L6 11 2.5 7.5l-1 1L6 13l8.5-8.5z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transform: translateY(-2px);
}
.hero-trust {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy-dark);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--mid-gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-section { background: var(--off-white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  width: 56px;
  height: 56px;
  background: rgba(13,36,99,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}
.product-card h3 {
  font-size: 19px;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.product-card p {
  font-size: 14.5px;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 22px; }
.product-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(13,36,99,0.07);
  color: var(--navy);
  letter-spacing: 0.3px;
}
.card-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.card-link:hover { color: var(--gold); gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.why-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: 10px;
  background: var(--off-white);
  transition: var(--transition);
}
.why-card:hover {
  background: var(--navy-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-card:hover h3,
.why-card:hover p { color: var(--white); }
.why-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
}
.why-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.why-card p {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.65;
  transition: var(--transition);
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.stat-item {
  background: var(--white);
  padding: 32px 20px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-unit { color: var(--gold); }
.stat-label {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.4;
}

/* ============================================================
   FACTORY / CAPABILITIES SECTION
   ============================================================ */
.factory-section {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.factory-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('') center/cover no-repeat;
  opacity: 0.12;
}
.factory-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.factory-text h2 { color: var(--white); margin-bottom: 18px; }
.factory-text p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.75; margin-bottom: 28px; }
.factory-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.factory-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
/* factory-list 在浅色背景（产品页 INTRO 区）中的文字颜色修正 */
.section-pad:not(.factory-section) .factory-list li {
  color: var(--dark-gray);
}
.factory-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.factory-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.factory-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 20px;
}
.factory-stat .num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.factory-stat .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ============================================================
   CERTIFICATIONS STRIP
   ============================================================ */
.cert-strip { background: var(--light-gray); padding: 40px 0; }
.cert-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cert-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-right: 8px;
}
.cert-badge {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--off-white); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.step-item:hover .step-num {
  background: var(--navy);
  color: var(--white);
}
.step-item h4 { font-size: 16px; margin-bottom: 8px; color: var(--navy-dark); }
.step-item p { font-size: 13.5px; color: var(--mid-gray); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 32px 28px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-flag { font-size: 28px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 14.5px;
  color: var(--dark-gray);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-role {
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 2px;
}

/* ============================================================
   INQUIRY / CONTACT FORM SECTION
   ============================================================ */
.inquiry-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.inquiry-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.inquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.inquiry-text h2 { color: var(--white); margin-bottom: 16px; }
.inquiry-text p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.75; margin-bottom: 28px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 14.5px;
}
.contact-row .icon { font-size: 18px; margin-top: 1px; }

/* Form */
.inquiry-form {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--dark-gray);
  font-family: var(--font-main);
  transition: border-color 0.25s;
  background: var(--white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,36,99,0.08);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.form-submit:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13,36,99,0.35);
  -webkit-text-fill-color: var(--white);
}
.form-note {
  font-size: 11.5px;
  color: var(--mid-gray);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#js-footer {
  background: #060f2e;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-item {
  font-size: 13px;
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   PRODUCT PAGE STYLES
   ============================================================ */
.product-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
}
.product-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.product-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--white);
  margin-bottom: 18px;
  max-width: 700px;
}
.product-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.product-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.spec-table th {
  background: var(--navy-dark);
  color: var(--white);
  padding: 12px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.spec-table td {
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--dark-gray);
  vertical-align: top;
}
.spec-table tr:nth-child(even) td { background: var(--off-white); }
.spec-table tr:last-child td { border-bottom: none; }

/* Classification table */
.class-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.class-table th {
  background: var(--navy);
  color: var(--white);
  padding: 13px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}
.class-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}
.class-table tr:nth-child(even) td { background: var(--off-white); }
.class-table tr:hover td { background: rgba(13,36,99,0.04); }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--navy); }
.faq-q {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--white);
  transition: var(--transition);
}
.faq-q:hover { background: var(--off-white); }
.faq-q .arrow {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s;
}
.faq-item.open .faq-q .arrow { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14.5px;
  color: var(--mid-gray);
  line-height: 1.75;
  background: var(--white);
}
.faq-item.open .faq-a { display: block; }

/* Application cards */
.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.app-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 24px;
  border-left: 3px solid var(--navy);
  transition: var(--transition);
}
.app-card:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
}
.app-card h4 { font-size: 16px; margin-bottom: 8px; color: var(--navy-dark); }
.app-card p { font-size: 13.5px; color: var(--mid-gray); line-height: 1.65; }

/* Production capacity highlight */
.capacity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.capacity-card {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
}
.capacity-card .cap-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.capacity-card .cap-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ============================================================
   ABOUT PAGE — TIMELINE
   ============================================================ */
.timeline { position: relative; padding: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 36px;
  align-items: center;
}
.timeline-left { text-align: right; padding-right: 36px; }
.timeline-right { padding-left: 36px; }
.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.timeline-year {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}
.timeline-content {
  font-size: 14.5px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ============================================================
   ABOUT PAGE — MANUFACTURING FOOTPRINT
   ============================================================ */
.footprint-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footprint-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}
.footprint-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.footprint-num {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.footprint-num span { color: var(--gold); }
.footprint-label { font-size: 14px; color: var(--mid-gray); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 130px 0 70px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-block h3 {
  font-size: 22px;
  color: var(--navy-dark);
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-detail .icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(13,36,99,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact-detail .info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 3px;
}
.contact-detail .info span {
  font-size: 14px;
  color: var(--mid-gray);
}
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 130px 0 70px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 200px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.blog-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card p { font-size: 13.5px; color: var(--mid-gray); line-height: 1.65; margin-bottom: 18px; }
.blog-card-meta {
  font-size: 12px;
  color: var(--mid-gray);
  display: flex;
  gap: 12px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.bg-navy { background: var(--navy-dark); }
.bg-light { background: var(--off-white); }
.btn-navy {
  background: var(--navy-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--navy-dark);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}
.btn-outline-dark:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* Two-column content layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .factory-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .inquiry-inner { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footprint-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
  }
  .main-nav.open a { font-size: 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footprint-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 24px 1fr; }
  .timeline-left { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .capacity-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 24px 60px; }
  /* Single post responsive */
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
  .single-hero-inner h1 { font-size: 26px; }
  .single-post-nav { grid-template-columns: 1fr; gap: 12px; }
}

/* ============================================================
   SINGLE POST — HERO
   ============================================================ */
.single-hero {
  position: relative;
  padding: 140px 0 64px;
  overflow: hidden;
}
.single-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a3a8f 100%);
  z-index: 0;
}
.single-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(201,168,76,0.07);
  pointer-events: none;
  z-index: 1;
}
.single-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.single-cat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: var(--gold-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin: 16px 0 18px;
}
.single-title {
  color: var(--white);
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.2;
  margin-bottom: 22px;
}
.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}
.single-meta span { display: flex; align-items: center; gap: 6px; }

/* ── Featured Image ───────────────────────────────────────── */
.single-featured-img {
  margin: -32px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 480px;
}
.single-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   SINGLE POST — BODY LAYOUT
   ============================================================ */
.single-body-section { padding: 56px 0 80px; background: var(--white); }

.single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* ── Article Content ──────────────────────────────────────── */
.single-content { min-width: 0; }

.post-content { font-size: 16px; line-height: 1.85; color: var(--dark-gray); }
/* H2 — 章节标题：左侧金色色条 + 底部细线 */
.post-content h2 {
  font-size: 22px;
  margin: 52px 0 18px;
  color: var(--navy-dark);
  padding: 10px 0 14px 18px;
  border-left: 4px solid var(--gold);
  border-bottom: 1px solid var(--border);
  line-height: 1.3;
}

/* H3 — 子标题：金色小点缀 */
.post-content h3 {
  font-size: 18px;
  margin: 36px 0 12px;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-content h3::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  min-width: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* H4 */
.post-content h4 { font-size: 16px; margin: 24px 0 10px; color: var(--navy); font-weight: 700; }

/* 段落 */
.post-content p { margin-bottom: 22px; line-height: 1.9; }

/* 首段首字放大（Drop Cap） */
.post-content > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  line-height: 0.8;
  color: var(--navy-dark);
  margin: 6px 12px 0 0;
  padding: 8px 4px 0;
}

/* 列表 — 保持默认浏览器样式 */
.post-content ul { list-style: disc; margin: 0 0 22px 24px; padding: 0; display: block; }
.post-content ol { list-style: decimal; margin: 0 0 22px 24px; padding: 0; display: block; counter-reset: unset; }
.post-content ul li, .post-content ol li {
  display: list-item;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark-gray);
}
.post-content ul li::before, .post-content ol li::before { display: none; }

/* Strong — 保持默认加粗，不加背景 */
.post-content strong {
  color: var(--navy-dark);
  font-weight: 700;
  background: none;
  padding: 0;
  border-radius: 0;
}

/* Blockquote */
.post-content blockquote {
  position: relative;
  border-left: 5px solid var(--gold);
  margin: 36px 0;
  padding: 24px 28px 24px 32px;
  background: linear-gradient(135deg, rgba(13,36,99,0.04) 0%, rgba(201,168,76,0.06) 100%);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--mid-gray);
  font-size: 16.5px;
  line-height: 1.85;
}
.post-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 16px;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.35;
  font-family: Georgia, serif;
  line-height: 1;
}

/* HR 分割线 */
.post-content hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  margin: 48px 0;
  border-radius: 2px;
}

/* 图片 */
.post-content img {
  border-radius: 10px;
  margin: 28px 0;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* 链接 */
.post-content a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid rgba(13,36,99,0.2);
  transition: var(--transition);
  text-decoration: none;
}
.post-content a:hover { color: var(--gold); border-color: var(--gold); }

/* 表格 */
.post-content table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 14.5px; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.post-content th { background: var(--navy-dark); color: var(--white); padding: 12px 16px; text-align: left; font-size: 13px; letter-spacing: 0.5px; }
.post-content td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.post-content tr:nth-child(even) td { background: var(--off-white); }
.post-content tr:hover td { background: rgba(13,36,99,0.04); }

/* em / 斜体 */
.post-content em { color: var(--mid-gray); font-style: italic; }

/* Tags */
.single-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.single-tags-label { font-size: 13px; font-weight: 700; color: var(--mid-gray); }
.single-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(13,36,99,0.07);
  color: var(--navy);
  transition: var(--transition);
}
.single-tag:hover { background: var(--navy); color: var(--white); }

/* Post Nav */
.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.post-nav-item:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.post-nav-next { text-align: right; }
.post-nav-dir { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.8px; }
.post-nav-title { font-size: 14px; font-weight: 600; color: var(--navy-dark); line-height: 1.4; }

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.single-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.sidebar-widget-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

/* Search */
.sidebar-search-form { display: flex; flex-direction: column; gap: 8px; }
.sidebar-search-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--dark-gray);
  transition: var(--transition);
  outline: none;
}
.sidebar-search-input:focus { border-color: var(--navy); }
.sidebar-search-btn {
  width: 100%;
  padding: 10px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.sidebar-search-btn:hover { background: var(--navy-dark); }

/* Recent Posts */
.sidebar-recent-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.sidebar-recent-item { display: flex; gap: 12px; align-items: flex-start; }
.sidebar-recent-thumb {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}
.sidebar-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-recent-thumb-placeholder {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
}
.sidebar-recent-info { display: flex; flex-direction: column; gap: 4px; }
.sidebar-recent-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.4;
  transition: var(--transition);
}
.sidebar-recent-title:hover { color: var(--gold); }
.sidebar-recent-date { font-size: 12px; color: var(--mid-gray); }

/* Categories */
.sidebar-cat-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--dark-gray);
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}
.sidebar-cat-item a:hover { background: var(--off-white); color: var(--navy); }
.sidebar-cat-count {
  font-size: 12px;
  font-weight: 700;
  background: rgba(13,36,99,0.08);
  color: var(--navy);
  padding: 2px 8px;
  border-radius: 10px;
}

/* About Widget */
.sidebar-widget-about { background: var(--off-white); border-color: transparent; }
.sidebar-about-text { font-size: 13.5px; color: var(--mid-gray); line-height: 1.75; margin-bottom: 14px; }
.sidebar-about-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.sidebar-about-tags span {
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(13,36,99,0.08);
  color: var(--navy);
}
.sidebar-about-link { font-size: 13.5px; font-weight: 700; color: var(--navy); transition: var(--transition); }
.sidebar-about-link:hover { color: var(--gold); }

/* Inquiry CTA Widget */
.sidebar-widget-cta {
  background: linear-gradient(135deg, var(--navy-dark), #1a3a8f);
  border-color: transparent;
  text-align: center;
}
.sidebar-widget-cta .sidebar-widget-title { border-bottom-color: rgba(201,168,76,0.5); color: var(--gold-light); }
.sidebar-cta-icon { font-size: 36px; margin-bottom: 12px; }
.sidebar-cta-title { color: var(--white); font-size: 16px; margin-bottom: 10px; line-height: 1.4; }
.sidebar-cta-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 18px; }
.sidebar-cta-btn { display: block; text-align: center; margin-bottom: 10px; }
.sidebar-cta-secondary {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: center;
  text-decoration: underline;
  transition: var(--transition);
}
.sidebar-cta-secondary:hover { color: var(--gold-light); }
