
/* 外层横幅容器 */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* 底层背景图 LCP核心 */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

/* 半透明渐变遮罩 */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 25%, rgba(255,255,255,0.75) 45%, rgba(255,255,255,0.35) 70%, rgba(0,0,0,0.10) 100%);
}

/* 内容居中容器 */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

/* 文本内容限制宽度 */
.hero-text-wrap {
  max-width: 800px;
}

/* 标题 */
.hero-text-wrap h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  color:#1C4532;
  margin: 0 0 1.2rem;
}

.highlight {
  color: #2F855A;
}

/* 描述文本 */
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 1.5rem;
}

/* 特性列表 */
.hero-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.hero-feature-list li {
  font-size: 1rem;
  color: #222;
  margin: 0 0 0.75rem;
  padding-left: 28px;
  position: relative;
}
.hero-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2F855A;
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
  display: grid;
  place-content: center;
}


/* CTA按钮区域 */
.hero-cta {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-quote,
.btn-whatsapp{
padding:14px 28px;
border-radius:10px;
font-size:15px;
font-weight:600;
text-decoration:none;
transition:.2s ease;
}

/* primary */
.btn-quote{
background:#2F855A;
color:#fff;
box-shadow:0 6px 16px rgba(56,161,105,.25);
}

.btn-quote:hover{
background:#1C4532;
transform:translateY(-1px);
}



.btn-whatsapp {
    background: transparent;
    border:1px solid #222;
    color:#222;
    padding:14px 24px;
    border-radius:6px;
    text-decoration:none;
    transition:0.25s;
}
.btn-whatsapp:hover{
    border-color:#2F855A;
    color:#2F855A;
}

.hero-badge {
  display: inline-block;
  background: #f5f6f7;
  color: #2F855A;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}

/* 移动端统一适配 */
@media (max-width: 768px) {
  .hero-banner {
    min-height: auto;
    padding: 40px 0;
    align-items: flex-start;
  }
  .hero-banner::before {
    background: rgba(255, 255, 255, 0.8);
  }
  .hero-inner {
    padding: 0rem 1rem 1rem;
  }
  .hero-text-wrap h1 {
    font-size: 2.2rem;
    margin: 10px 0 14px;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  .hero-feature-list {
    margin: 1.2rem 0 22px;
  }
  .hero-feature-list li {
    font-size: 0.92rem;
  }
  .hero-cta {
    justify-content: center;
  }
  
    .hero-badge {
    font-size: 13px;
    padding: 5px 14px;
    margin-bottom: 0.7rem;
  }

}

    
/* =========================
   SECTION BASE（统一浅底体系）
========================= */
.stats-section{
  max-width:1400px;
  margin:80px auto;
  padding:0 20px;
}

/* =========================
   HEADER
========================= */
.stats-header{
  text-align:center;
  margin-bottom:40px;
}

.stats-header h2{
  font-size:36px;
  margin-bottom:10px;
  color:#222;
  font-weight:750;
}

.stats-header p{
  color:#555;
  font-size:16px;
}

/* =========================
   GRID
========================= */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* =========================
   CARD（核心改造）
   去黑科技 → 白卡品牌风
========================= */
.stat-card{
  background:#ffffff;
  border:1px solid #bbf7d0;
  padding:28px 20px;
  border-radius:14px;
  text-align:left;
  position:relative;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,0.05);
  transition:all 0.25s ease;
}

/* hover（轻微浮动感） */
.stat-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

/* =========================
   HIGHLIGHT CARD（品牌强调）
========================= */
.stat-card.highlight{
  background:#f0fdf4; /* 很浅的运动绿背景 */
  border:1px solid #bbf7d0;
}

/* =========================
   NUMBER（去“科技感数字”）
========================= */
.stat-number{
  font-size:34px;
  font-weight:750;
  margin-bottom:8px;
  color:#222;
}

/* 绿色强调（但不渐变） */
.stat-card.highlight .stat-number{
  color:#2F855A;
}

/* =========================
   LABEL
========================= */
.stat-label{
  font-size:16px;
  font-weight:700;
  margin-bottom:6px;
  color:#111827;
}

/* =========================
   NOTE（可信说明）
========================= */
.stat-note{
  font-size:14px;
  color:#555;
  line-height:1.4;
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){
  .stats-grid{
    grid-template-columns:1fr 1fr;
  }
}  

/* =========================
  catalog SECTION
========================= */
.catalog-section{
  max-width:1400px;
  margin:100px auto;
  padding:0 20px;
}

/* =========================
   HEADER（更商务化）
========================= */
.catalog-header{
  text-align:center;
  margin-bottom:60px;
}

.catalog-header h2{
  font-size:40px;
  font-weight:800;
  color:#222;
  margin-bottom:14px;
  letter-spacing:-0.5px;
}

.catalog-header p{
  font-size:16px;
  color:#555;
  max-width:760px;
  margin:0 auto;
  line-height:1.75;
}

/* =========================
   GRID（更呼吸感）
========================= */
.catalog-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

/* =========================
   CARD（升级成“入口卡”）
========================= */
.catalog-card{
  display:block;
  text-decoration:none;
  background:#fff;
  border:1px solid #eaecef;
  border-radius:20px;
  overflow:hidden;
  transition:all 0.35s ease;
  box-shadow:0 10px 28px rgba(0,0,0,0.05);
  position:relative;
}

/* hover增强“可点击感” */
.catalog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 60px rgba(0,0,0,0.12);
}

/* =========================
   IMAGE（更高级占比）
========================= */
.catalog-img{
  height:300px;
  overflow:hidden;
  background:#f5f6f7;
}

.catalog-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.6s ease;
}

.catalog-card:hover .catalog-img img{
  transform:scale(1.08);
}

/* =========================
   BODY
========================= */
.catalog-body{
  padding:20px 20px 24px;
}

/* =========================
   LABEL（核心升级点）
========================= */
.catalog-label{
  display:inline-block;
  font-size:12px;
  letter-spacing:1.4px;
  font-weight:700;
  color:#1C4532; 
  background:#f0fdf4; 
  padding:6px 10px;
  border-radius:6px;
  margin-bottom:12px;
}

/* =========================
   TITLE
========================= */
.catalog-title{
  font-size:22px;
  font-weight:600;
  color:#222;
  margin:0 0 12px 0;
  line-height:1.3;
}

/* =========================
   DESCRIPTION（关键优化）
========================= */
.catalog-desc{
  font-size:15px;
  color:#444;
  line-height:1.7;
  margin-bottom:16px;
}

/* =========================
   CTA（升级成“行动感”）
========================= */
.catalog-cta{
  font-size:15px;
  font-weight:700;
  color:#2F855A;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:all .2s ease;
}

.catalog-card:hover .catalog-cta{
  color:#2f855a;
  text-decoration:underline;
}

/* =========================
   CARD subtle accent line（增强高级感）
========================= */
.catalog-card::after{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,#38a169,transparent);
  opacity:0.6;
}

/* =========================
   MOBILE
========================= */
@media(max-width:1024px){
  .catalog-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .catalog-grid{
    grid-template-columns:1fr;
  }

  .catalog-header h2{
    font-size:28px;
  }

  .catalog-img{
    height:240px;
  }
}
    

/* 全局容器统一 */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.latest-products-section {
    margin: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 36px;
    margin: 0 0 10px;
    color: #222;
    font-weight: 800;
}
.section-header p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 核心网格：桌面一行4个 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* 产品卡片 */
.product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* 图片高度320px */
.product-img {
    height: 320px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* 卡片内容区域（仅保留标题） */
.product-body {
    padding: 18px;
}
.product-title {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}
.product-title a {
    color: #222;
    text-decoration: none;
}

/* 响应式适配 */
@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
}


.trust-section{
  max-width:1400px;
  margin:80px auto;
  padding:0 20px;
}

.trust-header{
  text-align:center;
  margin-bottom:40px;
}

.trust-header h2{
  font-size:36px;
  color:#222;
  font-weight:800;
  margin-bottom:10px;
}

.trust-header p{
  font-size:16px;
  color:#555;
  max-width:760px;
  margin:0 auto;
  line-height:1.6;
}

/* CORE */
.trust-core{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:24px;
  margin-bottom:30px;
}

.trust-main-card{
  background:#fff;
  border:1px solid #e5e7eb;
border-radius:8px;
  padding:24px;
}

.trust-main-image{
  height:320px;
  border-radius:8px;
  overflow:hidden;
  margin-bottom:16px;
}

.trust-main-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.trust-main-card h3{
  font-size:22px;
  margin-bottom:10px;
}

.trust-main-card p{
  color:#555;
  line-height:1.7;
  font-size:15px;
}

/* METRICS */
.trust-metrics{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.metric{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:18px;
}

.metric .num{
  font-size:20px;
  font-weight:800;
  color:#1C4532; 
  margin-bottom:4px;
}

.metric .label{
  font-size:14px;
  color:#555;
}

/* PROCESS */
.trust-process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-bottom:30px;
}

.process-item{
  background:#f8fafc;
  padding:16px;
  border-radius:8px;
  border:1px solid #e5e7eb;
}

.process-item h4{
  font-size:16px;
  margin-bottom:6px;
  color:#222;
  
}

.process-item p{
  font-size:13px;
  color:#6b7280;
  line-height:1.5;
}

/* GRID */
.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.trust-card{
  background:#fff;
  border:1px solid #e5e7eb;
  padding:18px;
  border-radius:8px;
}

.trust-img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:10px;
}

.trust-card h4{
  font-size:16px;
  margin-bottom:6px;
}

.trust-card p{
  font-size:14px;
  color:#555;
  line-height:1.5;
}

/* MOBILE */
@media(max-width:768px){
  .trust-core{
    grid-template-columns:1fr;
  }

  .trust-process{
    grid-template-columns:1fr;
  }

  .trust-grid{
    grid-template-columns:1fr;
  }
}    
    


/* =========================
   team-banner
========================= */
.team-banner-section{
  width:100%;
  margin:0;
  background:#f6f8fb; /* 统一浅底体系 */
}

/* =========================
   HERO IMAGE（品牌展示）
========================= */
/* =========================
   CTA BAR（核心改造）
   从“黑条”→“品牌提示条”
========================= */
.team-bottom-bar{
  background:#f7f7ff;
  border-top:1px solid #e5e7eb;
  padding:22px 20px;
}

/* 内容结构 */
.bar-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* 文案 */
.bar-text h2{
  color:#222;
  font-size:25px;
  font-weight:750;
  margin:0 0 6px;
}

.bar-text p{
  color:#555;
  margin:0;
  font-size:16px;
  line-height:1.5;
}

/* =========================
   BUTTON（品牌CTA）
========================= */
.bar-btn{
  background:#2F855A; /* 匹克球绿 */
  color:#fff;
  padding:12px 20px;
  border-radius:10px;
  text-decoration:none;
  white-space:nowrap;
  font-weight:700;
  font-size:16px;
  transition:all .25s ease;
  box-shadow:0 8px 20px rgba(66,183,42,0.2);
}

.bar-btn:hover{
  background:#1C4532; 
  transform:translateY(-2px);
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){
  .team-top-img{
    height:55vh;
  }

  .bar-inner{
    flex-direction:column;
    text-align:center;
  }
}

    
/* =========================
   SECTION BASE
========================= */
.case-section{
  max-width:1400px;
  margin:100px auto;
  padding:0 24px;
}

/* =========================
   HEADER
========================= */
.case-header{
  text-align:center;
  margin-bottom:48px;
}

.case-tag{
  display:inline-block;
  padding:6px 12px;
  background:#ecfdf5;
  color:#1C4532; 
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  margin-bottom:14px;
}

.case-header h2{
  font-size:36px;
  line-height:1.15;
  margin-bottom:16px;
  color:#222;
  font-weight:750;
}

.case-header p{
  max-width:760px;
  margin:auto;
  font-size:16px;
  line-height:1.7;
  color:#555;
}

/* =========================
   GRID
========================= */
.case-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* =========================
   CARD（去电商感 → 品牌案例感）
========================= */
.case-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  overflow:hidden;
  transition:.25s;
  box-shadow:0 10px 28px rgba(0,0,0,0.05);
}

.case-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE
========================= */
.case-img{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
}

.case-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}

.case-card:hover img{
  transform:scale(1.05);
}

/* =========================
   BADGE（改为“市场/客户类型”语义）
========================= */
.case-badge{
  position:absolute;
  left:18px;
  top:18px;
  background:#ffffff;
  padding:8px 12px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  border:1px solid #e5e7eb;
  color:#111827;
}

/* =========================
   BODY
========================= */
.case-body{
  padding:24px;
}

.case-body h3{
  font-size:20px;
  margin-bottom:12px;
  color:#222;
  font-weight:750;
}

.case-desc{
  font-size:16px;
  line-height:1.7;
  color:#555;
  margin-bottom:16px;
}

/* =========================
   🔥 关键改造：TAG SYSTEM → “自然语言标签”
   （去UI化，不再像组件）
========================= */
.case-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* 客户类型 */
.tag-type,
.tag-model,
.tag-feature,
.tag-use{
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  background:#f3f4f6;
  color:#374151;
  border:1px solid #e5e7eb;
}

/* 重点强调“应用场景” */
.tag-use{
  background:#ecfdf5;
  color:#1C4532; 
  border:1px solid #bbf7d0;
}

/* =========================
   新增：案例语义层（核心升级）
========================= */
.case-scope{
  font-size:14px;
  line-height:1.6;
  color:#4b5563;
  margin-bottom:14px;
}

/* =========================
   MOBILE
========================= */
@media(max-width:900px){
  .case-grid{
    grid-template-columns:1fr;
  }

  .case-header h2{
    font-size:32px;
  }
}


   
/* =========================
   SECTION review
========================= */
.review-section{
  max-width:1100px;
  margin:80px auto;
  padding:0 20px;
}

/* =========================
   HEADER
========================= */
.review-head{
  text-align:center;
  margin-bottom:40px;
}

.review-head h2{
  font-size:34px;
  margin:0 0 10px;
  color:#222;
  font-weight:750;
}

.review-head p{
  font-size:16px;
  line-height:1.7;
  color:#555;
  max-width:700px;
  margin:auto;
}

/* =========================
   GRID
========================= */
.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

/* =========================
   CARD（去 SaaS 风）
========================= */
.review-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
border-radius:8px;
  padding:26px;
  min-height:260px;
  display:flex;
  flex-direction:column;
  transition:all .25s ease;
  box-shadow:0 8px 22px rgba(0,0,0,0.04);
}

/* hover */
.review-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 32px rgba(0,0,0,0.08);
}

/* =========================
   FEATURED（品牌强调卡）
========================= */
.review-card.featured{
  background:#f0fdf4;
  border:1px solid #bbf7d0;
}

/* =========================
   STARS（保留但弱化）
========================= */
.stars{
  font-size:16px;
  color:#f59e0b;
  margin-bottom:14px;
}

/* =========================
   QUOTE（核心评价）
========================= */
.quote{
  font-size:14.5px;
  line-height:1.7;
  margin:0 0 22px;
  flex:1;
  color:#374151;
}

/* featured quote */
.review-card.featured .quote{
  color:#111827;
}

/* =========================
   META（客户信息）
========================= */
.meta{
  padding-top:16px;
  border-top:1px solid #e5e7eb;
}

/* featured border */
.review-card.featured .meta{
  border-color:#d1fae5;
}

/* name */
.meta strong{
  display:block;
  font-size:16px;
  font-weight:700;
  color:#111827;
  margin-bottom:4px;
}

/* company / country */
.meta span{
  font-size:12px;
  color:#555;
}

/* =========================
   MOBILE
========================= */
@media(max-width:900px){
  .review-grid{
    grid-template-columns:1fr;
  }

  .review-card.featured{
    transform:none;
  }
}

@media(max-width:768px){
  .review-section{
    margin:60px auto;
  }

  .review-head h2{
    font-size:28px;
  }

  .review-card{
    padding:22px;
  }
} 
    

/* 外层容器限制最大宽度1200，浅灰背景 */
.faq-wrap {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 1rem;
    background: #f7f7f7;
    padding: 3rem;
}
/* 两栏网格布局 */
.faq-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: start;
}
/* 左侧标题区域 */
.faq-left h2 {
    font-size: 2.2rem;
    margin: 0 0 0.4rem;
}
.faq-left p {
    color: #444;
    font-size: 0.9rem;
}
/* FAQ 折叠项容器 浅绿风格白底边框 */
.faq-item {
    background: #fff;
    border: 1px solid #e0eed8;
    margin-bottom: 0.6rem;
    border-radius: 4px;
    transition: border-color 0.2s ease;
}
/* 展开后边框变绿色 */
.faq-item[open] {
    border-color: #2F855A;
}
/* 问题标题栏 flex左右分离，解决重叠 */
.faq-item summary {
    padding: 1rem 1.2rem;
    font-size: 17px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
    color: #222;
    transition: color 0.2s ease;
    font-weight: 700;
}
/* 展开后标题文字绿色 */
.faq-item[open] summary {
    color: #2F855A;
}
/* 移除原生三角 */
.faq-item summary::-webkit-details-marker {
    display: none;
}
/* ±按钮容器 独立盒子，不再用伪元素避免重叠 */
.faq-toggle-btn {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid #999;
    border-radius: 50%;
    font-size: 15px;
    line-height: 1;
    color: #555;
    transition: all 0.2s ease;
}
/* 展开后按钮边框+文字变绿 */
.faq-item[open] .faq-toggle-btn {
    border-color: #2F855A;
    color: #2F855A;
}
/* 回答内容 */
.faq-content {
    padding: 0 1.2rem 1.2rem;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}
/* 移动端自动变为单栏 */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-left {
        text-align: center;
    }
}



.faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding-right: 28px;
     padding: 16px 18px; /* ⭐关键：左右留空间 */
}

/* 隐藏默认箭头 */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* 自定义箭头 */
.faq-item summary::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 14px;
    height: 8px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='1.5' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.25s ease;
}

/* 展开时旋转 */
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

/*=====================
SECTION
======================*/

.latest-posts-section{
max-width:1400px;
margin:100px auto;
padding:0 20px;
}

/*=====================
HEADER
======================*/

.latest-posts-header{
text-align:center;
margin-bottom:50px;
}

.latest-posts-header h2{
font-size:38px;
font-weight:750;
color:#222;
margin-bottom:12px;
}

.latest-posts-header p{
font-size:16px;
color:#555;
max-width:720px;
margin:auto;
line-height:1.7;
}

/*=====================
GRID
======================*/

.latest-posts-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:26px;

}

/*=====================
CARD
======================*/

.latest-post-card{

display:block;

text-decoration:none;

background:#fff;

border:1px solid #edf2f7;

border-radius:18px;

overflow:hidden;

transition:.3s;

box-shadow:0 8px 24px rgba(0,0,0,.04);

}

.latest-post-card:hover{

transform:translateY(-8px);

box-shadow:0 22px 50px rgba(0,0,0,.08);

}

/*=====================
IMAGE
======================*/

.latest-post-image{

height:240px;

background:#f3f4f6;

overflow:hidden;

}

.latest-post-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.latest-post-card:hover img{

transform:scale(1.06);

}

/*=====================
BODY
======================*/

.latest-post-body{

padding:22px;

}

/*=====================
TITLE
======================*/

.latest-post-body h3{

font-size:21px;

font-weight:750;

color:#222;

line-height:1.45;

margin:0 0 18px;

display:-webkit-box;

-webkit-line-clamp:2;

-webkit-box-orient:vertical;

overflow:hidden;

}

/*=====================
CTA
======================*/

.latest-post-link{

font-size:15px;

font-weight:700;

color:#2F855A;

}

.latest-post-card:hover .latest-post-link{

text-decoration:underline;

}

/*=====================
TABLET
======================*/

@media(max-width:1024px){

.latest-posts-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*=====================
MOBILE
======================*/

@media(max-width:640px){

.latest-posts-grid{

grid-template-columns:1fr;

}

.latest-posts-header h2{

font-size:28px;

}

.latest-post-image{

height:220px;

}

}





/* =========================
   SECTION BASE（统一浅底系统）
========================= */
.final-cta{
  background:#f6f8fb;
  padding:90px 20px;
  color:#222;
}

/* =========================
   INNER
========================= */
.final-cta-inner{
  max-width:1000px;
  margin:0 auto;
  text-align:center;
}

/* =========================
   TITLE（品牌收口）
========================= */
.final-cta h2{
  font-size:40px;
  margin-bottom:14px;
  line-height:1.2;
  font-weight:750;
  color:#222;
}

.final-cta p{
  font-size:16px;
  color:#555;
  max-width:700px;
  margin:0 auto 30px;
  line-height:1.7;
}

/* =========================
   TRUST STRIP（替代 stats box）
   👉 从“数据卡”改为“可信标签”
========================= */


.final-cta-item{
  background:#ffffff;
  border:1px solid #e5e7eb;
  padding:10px 14px;
  border-radius:999px;
  min-width:auto;
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
}

.final-cta-item strong{
  display:block;
  font-size:13px;
  color:#2F855A;
  font-weight:700;
}

.final-cta-item span{
  font-size:11px;
  color:#555;
}

/* =========================
   BUTTONS（品牌转化）
========================= */
.final-cta-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

/* 主CTA */
.btn-main{
  background:#2F855A;
  color:#fff;
  padding:14px 26px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 10px 24px rgba(66,183,42,0.2);
  transition:all .25s ease;
}

.btn-main:hover{
  background:#1C4532; 
  transform:translateY(-2px);
}

/* 次CTA */
.btn-sub{
  border:1px solid #e5e7eb;
  background:#fff;
  color:#222;
  padding:14px 22px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

/* =========================
   NOTE
========================= */
.final-cta-note{
  font-size:14px;
  color:#555;
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){
  .final-cta h2{
    font-size:28px;
  }
}

 