/* asp2606.css - common styles for top.html, foot.html, and about.html */

/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif; font-size: 14px; line-height: 1.6; color: #1a1a2e; background: #fff; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Containers ===== */
.main-container { width: 80%; max-width: 1800px; margin: 0 auto; padding: 0 15px; }
.container { width: 80%; max-width: 1800px; margin: 0 auto; padding: 0 15px; }

/* ===== Bootstrap-like Navbar (for index.html) ===== */
.navbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; position: relative; padding: 0; }
.navbar-expand-lg { flex-flow: row nowrap; justify-content: flex-start; }
.navbar-nav { display: flex; flex-direction: row; padding-left: 0; margin-bottom: 0; list-style: none; margin-top: 0; }
.nav-item { position: relative; }
.nav-link { display: block; padding: 12px 16px; text-decoration: none; font-weight: 700; font-size: 18px; transition: background .3s; }
.collapse { display: none; }
.collapse.show { display: block; }
.navbar-collapse { flex-basis: 100%; flex-grow: 1; align-items: center; }
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse { display: flex !important; flex-basis: auto; }
  .navbar-expand-lg .navbar-nav { flex-direction: row; }
}
.dropdown-menu { position: absolute; z-index: 1000; display: none; min-width: 180px; padding: 8px 0; margin: 0; background: #f8fafc; border: 1px solid #0056b3; border-radius: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); list-style: none; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-item { display: block; padding: 8px 20px; color: #333; text-decoration: none; font-size: 14px; }
.dropdown-item:hover { background: #007BFF; color: #fff; }
.navbar-brand { padding: 12px 0; font-size: 16px; font-weight: 700; text-decoration: none; }
.text-white { color: #fff !important; }
.navbar-toggler { padding: 8px 12px; font-size: 20px; line-height: 1; background: transparent; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; cursor: pointer; display: none; }
.navbar-expand-lg .navbar-toggler { display: none; }
.navbar-toggler-icon { display: inline-block; width: 1.5em; height: 1.5em; vertical-align: middle; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: center; background-size: 100%; }
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-toggler { display: block; }
  .navbar-expand-lg .navbar-nav { flex-direction: column; }
  .navbar-expand-lg .navbar-collapse { position: absolute; top: 100%; left: 0; right: 0; background: #0056b3; padding: 10px 15px; z-index: 999; display: none !important; }
  .navbar-expand-lg .navbar-collapse.show { display: block !important; }
  .dropdown-menu { position: static; box-shadow: none; background: rgba(255,255,255,0.1); border: none; }
  .dropdown-item { color: #fff; }
  .dropdown-item:hover { background: rgba(255,255,255,0.2); color: #fff; }
}

/* ===== Top Bar (index.html) ===== */
.top-bar { background: #fff; border-bottom: 1px solid #e2e8f0; padding: 12px 0; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.top-bar .logo img { height: 50px; width: auto; }
.top-bar h1 { font-size: clamp(12px, 2vw, 18px); color: #1a1a2e; font-weight: 500; margin: 0; text-align: center; flex: 1; }
.top-bar .contact { text-align: right; font-size: 14px; }
.top-bar .contact .phone { font-size: clamp(14px, 2vw, 20px); color: #0056b3; font-weight: 700; }
.top-bar .brand-title { font-size: 22px; }
.top-bar .brand-subtitle { font-size: 14px; }
.title-wrap { text-align: center; }
.top-bar-inner { flex-wrap: nowrap; }
.mobile-hamburger { display: none; }

/* ===== Navbar Main (index.html blue bar) ===== */
.navbar-main { background: #0056b3 !important; padding: 0; }
.navbar-main .nav-link { color: #fff !important; }
.navbar-main .nav-link:hover, .navbar-main .nav-link.active { background: rgba(255,255,255,0.1); }

/* Header sticky */
.header-wrap { position: sticky; top: 0; z-index: 1000; }

/* ===== Mobile Nav Panel ===== */
/* ===== Mobile Nav Panel ===== */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  display: none;
}
.mobile-nav-panel.show { transform: translateX(0); display: block; }
.mobile-nav-panel .panel-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid #eee; background: #fff; position: sticky; top: 0; z-index: 2; }
.mobile-nav-panel .panel-header .logo img { height: 32px; }
.mobile-nav-panel .panel-header .close-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative; }
.mobile-nav-panel .panel-header .close-btn::before, .mobile-nav-panel .panel-header .close-btn::after { content: ''; position: absolute; width: 20px; height: 2px; background: #333; transition: all 0.3s; }
.mobile-nav-panel .panel-header .close-btn::before { transform: rotate(45deg); }
.mobile-nav-panel .panel-header .close-btn::after { transform: rotate(-45deg); }
.mobile-nav-panel .panel-list { padding: 16px; }
.mobile-nav-panel .panel-list li { border-bottom: 1px solid #f0f0f0; }
.mobile-nav-panel .panel-list li a { display: block; padding: 14px 4px; color: #333; font-size: 15px; font-weight: 500; text-decoration: none; }
.mobile-nav-panel .panel-tel { padding: 16px; text-align: center; background: #f8f9fa; margin-top: 20px; }
.mobile-nav-panel .panel-tel span { font-size: 13px; color: #666; }
.mobile-nav-panel .panel-tel strong { display: block; font-size: 20px; color: #0056b3; margin-top: 4px; }

/* ===== Hamburger Bar ===== */
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  position: relative;
  transition: all 0.3s;
}
.hamburger-bar::before,
.hamburger-bar::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.hamburger-bar::before { top: -7px; }
.hamburger-bar::after { top: 7px; }

/* ===== Anchor Bar ===== */
.anchor-bar.show { display: block; }
.anchor-bar a { display: inline-block; padding: 6px 18px; margin: 0 4px; color: #0056b3; font-size: 14px; font-weight: 500; text-decoration: none; border-radius: 20px; transition: all 0.28s; border: 1px solid transparent; }
.anchor-bar a:hover { background: #0056b3; color: #fff; border-color: #0056b3; }

/* ===== Back to Top ===== */
.back-top { position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; background: #0056b3; color: #fff; border: none; border-radius: 50%; cursor: pointer; z-index: 999; font-size: 20px; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; }
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: #FF6B00; transform: translateY(-3px); }

/* ===== Footer ===== */
.site-footer { background: #0056b3; color: #fff; font-size: 14px; }
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: #fff; }
.site-footer .footer-top { padding: 40px 0 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-footer .footer-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; width: 80%; max-width: 1800px; margin: 0 auto; padding: 0 15px; }
.site-footer .footer-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.site-footer .footer-col ul { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-col li { margin-bottom: 6px; font-size: 13px; }
.site-footer .footer-col li a::before { content: '\B7'; margin-right: 4px; color: #FF6B00; }
.site-footer .footer-contact p { margin-bottom: 4px; font-size: 13px; line-height: 1.6; }
.site-footer .footer-qr { text-align: center; }
.site-footer .footer-qr img { width: 80px; height: 80px; border-radius: 4px; margin-bottom: 4px; display: inline-block; }
.site-footer .footer-qr p { font-size: 12px; color: rgba(255,255,255,0.7); }
.site-footer .footer-bottom { padding: 16px 0; background: rgba(0,0,0,0.15); }
.site-footer .footer-links { display: flex; flex-wrap: wrap; gap: 6px 12px; justify-content: center; font-size: 12px; margin-bottom: 10px; width: 80%; max-width: 1800px; margin: 0 auto 10px; padding: 0 15px; }
.site-footer .copyright { text-align: center; font-size: 12px; color: rgba(255,255,255,0.6); width: 80%; max-width: 1800px; margin: 0 auto; padding: 0 15px; }

/* ===== Footer contact override (with !important to beat inline styles) ===== */
.footer-contact p { font-size: 13px !important; color: #fff !important; font-weight: 400 !important; margin-bottom: 4px !important; line-height: 1.6 !important; }
.footer-contact p strong { font-size: 18px !important; color: #fff !important; font-weight: 700 !important; }
.footer-contact .phone-number { font-size: 18px !important; color: #fff !important; font-weight: 700 !important; }

/* ===== Navigation menu (for {aspcms:top} generated header) ===== */
.menu { display: block !important; width: 100% !important; background: #0056b3 !important; border-top: 1px solid rgba(255,255,255,0.1) !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; position: relative; z-index: 100; overflow: hidden; visibility: visible !important; opacity: 1 !important; min-height: 40px; float: none !important; clear: both; }
.menu > div { width: 80% !important; max-width: 1800px !important; margin: 0 auto !important; position: relative; }
.menu > div::after { content: ''; display: table; clear: both; }
.navigation { display: flex !important; list-style: none !important; margin: 0 !important; padding: 0 !important; height: 40px !important; align-items: center !important; flex-wrap: nowrap; float: none !important; }
.navigation li { position: relative; list-style: none !important; margin: 0 !important; padding: 0 !important; float: none !important; }
.navigation li a { display: block !important; padding: 0 20px !important; color: #fff !important; font-size: 14px !important; font-weight: 500 !important; text-decoration: none !important; line-height: 40px !important; transition: background 0.2s !important; white-space: nowrap; float: none !important; }
.navigation li a:hover { background: rgba(255,255,255,0.15) !important; color: #fff !important; }
.navigation li ul { display: none !important; position: absolute !important; top: 100% !important; left: 0 !important; background: #fff !important; border: 1px solid #e2e8f0 !important; border-radius: 4px !important; box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important; min-width: 180px !important; z-index: 1000 !important; padding: 4px 0 !important; list-style: none !important; margin: 0 !important; }
.navigation li:hover > ul { display: block !important; }
.navigation li ul li { list-style: none !important; margin: 0 !important; padding: 0 !important; float: none !important; }
.navigation li ul li a { color: #333 !important; line-height: 32px !important; padding: 0 16px !important; font-size: 13px !important; white-space: nowrap !important; display: block !important; text-decoration: none !important; float: none !important; }
.navigation li ul li a:hover { background: #f0f7ff !important; color: #0056b3 !important; }
.menu .clear { display: none !important; }

/* ===== Banner Area ===== */
.banner-area { border-top: 2px solid #ff0000; border-bottom: 4px solid #cecece; overflow: hidden; }
.banner-area img { width: 100%; height: 246px; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .banner-area img { height: 140px; }
}
.page-container { width: 80%; max-width: 1800px; margin: 0 auto; display: flex; gap: 20px; padding: 20px 0; }
.page-sidebar { width: 222px; flex-shrink: 0; position: sticky; top: 80px; align-self: flex-start; }
.page-content { flex: 1; min-width: 0; }
.page-content table { width: 100%; }

/* ===== Page Header / Breadcrumb ===== */
.page-header { background: linear-gradient(135deg, #0056b3 0%, #007BFF 100%); border-radius: 8px; padding: 12px 20px; margin-bottom: 16px; }
.page-header table { width: 100%; }
.page-title { font-size: clamp(10px, 2.5vw, 18px); font-weight: 700; color: #fff; margin: 0; }
.breadcrumb-nav { font-size: clamp(6px, 1.5vw, 12px); color: rgba(255,255,255,0.85); font-family: arial; }
.breadcrumb-nav a { color: rgba(255,255,255,0.85); text-decoration: none; }
.breadcrumb-nav a:hover { color: #fff; }

/* ===== Left Sidebar - Blue Theme ===== */
.sidebar-block { margin-bottom: 16px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.sidebar-header { background: linear-gradient(135deg, #0056b3 0%, #007BFF 100%); padding: 14px 16px; color: #fff; font-size: 15px; font-weight: 700; }
.sidebar-header .en { font-size: 12px; font-weight: 400; opacity: 0.8; margin-left: 6px; }
.sidebar-body { background: #fff; padding: 8px 0; }
.sidebar-body a { display: block; padding: 10px 16px; color: #333; font-size: 14px; text-decoration: none; transition: all 0.2s; border-left: 3px solid transparent; }
.sidebar-body a:hover { background: #d0e7ff; color: #0056b3; border-left-color: #0056b3; }
.sidebar-body a.active { background: #0056b3; color: #fff; border-left-color: #FF6B00; }
.sidebar-footer { height: 4px; background: linear-gradient(90deg, #0056b3, #007BFF); }

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
  .main-container { width: 100%; padding: 0 8px; }

  /* Top bar */
  .top-bar { padding: 6px 0; }
  .top-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 2px 0;
  }
  .mobile-hamburger { flex-shrink: 0; display: flex; align-items: center; }
  .top-bar .logo { flex-shrink: 0; }
  .top-bar .logo img { height: 28px; }
  .title-wrap {
    flex: 1;
    min-width: 0;
    text-align: left;
  }
  .top-bar h1 {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    display: block !important;
    margin: 0;
    padding-right: 4px;
  }
  .top-bar .brand-title { font-size: 10px; }
  .top-bar .brand-subtitle { font-size: 7px; }
  .top-bar .contact div { font-size: 7px; }
  .top-bar .contact { display: flex; flex-direction: column; align-items: flex-end; font-size: 7px; }
  .top-bar .contact .phone { font-size: 7px; }

  /* Navbar */
  .navbar-expand-lg .navbar-toggler { display: none !important; }

  /* Header wrap sticky */
  .header-wrap { position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid #0056b3; }

  /* Anchor bar hidden on mobile */
  .anchor-bar { display: none !important; }

  /* Back top */
  .back-top { right: 12px; bottom: 12px; width: 40px; height: 40px; font-size: 18px; }

  /* Menu / navigation */
  .menu > div { width: 100% !important; padding: 0 10px !important; }
  .navigation { flex-wrap: wrap !important; height: auto !important; }
  .navigation li a { padding: 0 10px !important; font-size: 12px !important; line-height: 36px !important; }
  .navigation li ul { position: static !important; box-shadow: none !important; border: none !important; background: rgba(255,255,255,0.1) !important; display: none !important; }
  .navigation li:hover > ul { display: block !important; }
  .navigation li ul li a { color: #fff !important; padding: 0 10px !important; line-height: 30px !important; }

  /* Page layout */
  .page-container { width: 100%; padding: 10px; }
  .page-sidebar { display: none; }
  .page-content { width: 100%; }
  .page-header { padding: 10px 14px; flex-wrap: wrap; gap: 6px; }
  .page-title { font-size: 10px; }
  .breadcrumb-nav { font-size: 6px; }

  /* Footer: only show contact and QR on mobile */
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .site-footer .footer-col:not(.footer-contact):not(.footer-qr) { display: none; }
  .site-footer .footer-contact { grid-column: 1 / -1; text-align: center; }
  .site-footer .footer-qr { grid-column: 1 / -1; text-align: center; }
  .site-footer .footer-qr > div { display: inline-block; margin: 0 8px; }
}

/* Smaller phones */
@media (max-width: 480px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Product / Solution List ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-v { text-align: center; }
.card-v a { display: block; }
.card-v img { width: 100%; height: auto; aspect-ratio: 484 / 300; object-fit: contain; border: 1px solid #e2e8f0; border-radius: 4px; display: block; background: #f8f9fa; }
.card-v a.title { padding: 10px 4px; font-size: 14px; color: #0056b3; text-decoration: none; font-weight: 500; }
.card-v a.title:hover { color: #007BFF; }
.section-title { background: linear-gradient(135deg, #0056b3 0%, #007BFF 100%); color: #fff; font-size: 16px; padding: 10px 14px; margin: 0 0 16px 0; border-radius: 4px; font-weight: 700; }
.more-btn { text-align: center; margin-top: 20px; }
.more-btn a { display: inline-block; padding: 12px 40px; background: #0056b3; color: #fff; text-decoration: none; font-size: 26px; font-weight: 700; border-radius: 8px; transition: background 0.2s; }
.more-btn a:hover { background: #007BFF; }

/* ===== News / Product Detail ===== */
.tit { text-align: center; padding: 20px 0; }
.tit h1 { font-size: 16px; font-weight: 700; color: #333; margin-bottom: 8px; }
.news-date { text-align: center; border: 1px solid #e9e9e9; padding: 8px 0; font-size: 13px; color: #666; }
.download-bar { text-align: center; padding: 15px 0; font-size: 14px; color: #333; }
.download-bar a { color: #0056b3; text-decoration: none; font-weight: 700; }
.download-bar a:hover { color: #007BFF; }
.prev-next { padding: 15px 0; font-size: 14px; color: #333; line-height: 1.8; }
.prev-next a { color: #0056b3; text-decoration: none; }
.prev-next a:hover { color: #007BFF; }

/* ===== Responsive: Product / Solution List ===== */
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .card-v img { height: auto; }
}

/* ===== News List ===== */
.news-item { border-bottom: 1px dotted #cccccc; padding: 12px 0; line-height: 1.8; }
.news-item a.title-link { font-size: 15px; font-weight: 700; color: #0056b3; text-decoration: none; }
.news-item a.title-link:hover { color: #007BFF; }
.news-item .date { color: #999; font-size: 12px; }
.news-item .desc-link { color: #333; text-decoration: none; font-size: 14px; }
.news-item .more-link { color: #FF0000; text-decoration: none; font-size: 13px; }

/* ===== Video/Product List ===== */
.list-item { border-bottom: 1px dotted #cccccc; padding: 15px 0; }
.list-item table { width: 100%; }
.list-item img { width: 484px; height: 300px; object-fit: cover; border: 1px solid #e2e8f0; border-radius: 4px; display: block; }
.list-item .text-col { padding-left: 15px; vertical-align: top; line-height: 1.8; }
.list-item .title-link { font-size: 16px; font-weight: 700; color: #0056b3; text-decoration: none; }
.list-item .title-link:hover { color: #007BFF; }
.list-item .desc-link { color: #333; text-decoration: none; font-size: 14px; }

/* ===== Pagination ===== */
.pagination { height: 70px; text-align: center; padding-top: 20px; font-size: 14px; }
.pagination a { color: #0056b3; text-decoration: none; padding: 4px 8px; margin: 0 2px; border: 1px solid #e2e8f0; border-radius: 4px; }
.pagination a:hover { background: #0056b3; color: #fff; border-color: #0056b3; }

/* ===== CTA Section (响应式) ===== */
.cta-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 40px 48px;
  overflow: hidden;
}
.cta-divider {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0056b3, transparent);
  margin: 0 0 28px 0;
}
.cta-headline {
  text-align: center;
  font-size: 28px;
  color: #e71f18;
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1.4;
}
.cta-lead {
  font-size: 16px;
  line-height: 2;
  color: #444;
  margin: 0 0 32px 0;
}
.cta-lead strong { color: #0056b3; }
.cta-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 32px 0 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: #0056b3;
  border-radius: 2px;
}
.cta-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 32px 0;
}
.cta-stage-card {
  background: #f8fafc;
  border-radius: 8px;
  padding: 20px 16px;
  border-left: 4px solid #0056b3;
}
.cta-stage-card .stage-label {
  font-size: 15px;
  font-weight: 700;
  color: #0056b3;
  margin: 0 0 10px 0;
}
.cta-stage-card .stage-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}
.cta-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 24px 0;
  margin: 24px 0;
  background: linear-gradient(135deg, #f0f7ff, #fff8f0);
  border-radius: 8px;
}
.cta-stat-item { text-align: center; }
.cta-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: #0056b3;
  line-height: 1;
}
.cta-stat-label {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}
.cta-closing {
  text-align: center;
  font-size: 18px;
  color: #333;
  margin: 32px 0 0 0;
  line-height: 1.8;
}
.cta-closing .highlight-red {
  color: #e71f18;
  font-size: 22px;
  font-weight: 700;
}
.cta-contact-bar {
  background: linear-gradient(135deg, #0056b3 0%, #007BFF 100%);
  color: #fff;
  text-align: center;
  padding: 48px 24px;
  border-radius: 8px;
  margin: 32px 0 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.6;
}
.cta-contact-bar .cta-phone {
  font-size: 28px;
  color: #FFD700;
  text-decoration: none;
  font-weight: 700;
}
.cta-contact-bar .cta-wechat {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.cta-contact-bar .cta-closing-bar {
  font-size: 22px;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.6;
}
.cta-contact-bar .highlight-cta {
  color: #FFD700;
  font-size: 26px;
  font-weight: 700;
}
.cta-contact-bar .cta-phone-line {
  font-size: 20px;
  margin: 12px 0 4px 0;
}

/* Responsive: CTA */
@media (max-width: 768px) {
  .cta-wrapper { padding: 24px 20px; }
  .cta-headline { font-size: 20px; }
  .cta-lead { font-size: 14px; }
  .cta-section-title { font-size: 16px; }
  .cta-stage-grid { grid-template-columns: 1fr; }
  .cta-stage-card .stage-label { font-size: 14px; }
  .cta-stage-card .stage-text { font-size: 13px; }
  .cta-stats { gap: 20px; flex-wrap: wrap; }
  .cta-stat-num { font-size: 24px; }
  .cta-stat-label { font-size: 12px; }
  .cta-closing { font-size: 15px; }
  .cta-closing .highlight-red { font-size: 18px; }
  .cta-contact-bar { font-size: 16px; padding: 28px 16px; }
  .cta-contact-bar .cta-phone { font-size: 22px; }
  .cta-contact-bar .cta-wechat { font-size: 13px; }
  .cta-contact-bar .cta-closing-bar { font-size: 16px; }
  .cta-contact-bar .highlight-cta { font-size: 18px; }
}

/* ===== Responsive: List Pages ===== */
@media (max-width: 768px) {
  .news-item { padding: 10px 0; }
  .list-item img { width: 100%; height: auto; max-width: 484px; }
  .list-item .text-col { padding-left: 0; padding-top: 10px; }
  .list-item table { display: block; }
  .list-item tr { display: flex; flex-direction: column; }
  .list-item td { display: block; width: 100% !important; }
}


