/* ============================================
   首页样式 - 高端企业官网风格
   ============================================ */

/* ===== 幻灯片样式（保留原有） ===== */
.hero-slider {
  position:relative; width:100%; min-height:100vh;
  overflow:hidden; background:transparent;
}
.hero-slides-wrapper {
  position:relative; width:100%; height:100%; min-height:100vh;
}
.hero-slide {
  position:absolute; inset:0; width:100%; height:100%; min-height:100vh;
  display:flex; flex-direction:column; justify-content:center;
  padding-top:max(20vh, 100px);
  padding-bottom:max(6vh, 40px);
  opacity:0; visibility:hidden;
  transition:opacity .8s ease, visibility .8s ease;
  z-index:1;
}
.hero-slide.active {
  opacity:1; visibility:visible; z-index:2;
}
.hero-slide-bg {
  position:absolute; inset:0;
  background-color:#0d1117;
  background-size:cover; background-position:center; background-repeat:no-repeat;
  z-index:0;
}
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(13, 51, 35, 0.82) 0%, rgba(26, 77, 58, 0.78) 100%);
  z-index:1;
}
.hero-container {
  position:relative; z-index:2;
  width:75%; max-width:1600px; margin:0 auto;
  padding:20px 10px;
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
}
.hero-container--vertical {
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:30px;
}
.hero-container--center { justify-content:center; text-align:center; }
.hero-text {
  flex:1 0 40%; min-width:0;
  padding-left:30px;
  display:flex; flex-direction:column; align-items:flex-start;
}
.hero-container--center .hero-text { align-items:center; }
.hero-container--vertical .hero-text { align-items:center; padding-left:0; width:100%; flex:0 0 auto; }
.hero-container--vertical .hero-subtitle,
.hero-container--vertical .hero-slogan { text-align:center; }
.hero-container--vertical .hero-actions { justify-content:center; }
@media(max-width:768px) {
  #heroSlider { display:none; }
  .hero-slider-mobile { display:block; }
}
@media (max-width: 1100px) {
  .hero-slider,
  .hero-slides-wrapper {
    min-height: 0;
    height: auto;
  }
  .hero-slide {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    padding-top: 110px;
    padding-bottom: 70px;
    opacity: 1;
    visibility: visible;
  }
  .hero-slide:not(.active) {
    display: none;
  }
  .hero-title {
    white-space: normal;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .hero-dots {
    bottom: 26px;
  }
  .hero-products--grid,
  .hero-articles--grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
.hero-badge {
  display:inline-block;
  padding:6px 18px; margin-bottom:24px;
  font-size:.8rem; font-weight:600;
  color:rgba(255,255,255,.9); background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  border-radius:50px; letter-spacing:.5px;
  backdrop-filter:blur(4px);
}
.hero-title {
  font-size:clamp(1.1rem, 3vw, 2.8rem);
  font-weight:900; line-height:1.2;
  margin-bottom:0;
  color:#fff;
  width:100%;
  max-width:none;
  white-space:normal;
  letter-spacing:3px;
  position:relative;
}
.hero-title em { font-style:normal; color:var(--accent); }
.hero-title br {
  content:'';
  display:block;
  margin-top:.15em;
}
.hero-subtitle {
  font-size:clamp(0.5rem, 2vw, 1.75rem);
  color:#fff; font-weight:700; line-height:1.5;
  margin:5px 0 40px;
  letter-spacing:2px;
  text-align:left;
}
.hero-container--center .hero-subtitle { text-align:center; }
.hero-subtitle + .hero-slogan { margin-top:-20px; }
.hero-slogan {
  font-size:clamp(1rem, 1.9vw, 1.45rem);
  color:rgba(255,255,255,.85); font-weight:500; line-height:1.8;
  margin:20px 0 30px; letter-spacing:1px; text-align:left;
}
.hero-container--center .hero-slogan { text-align:center; }
.hero-actions { display:flex; gap:16px; justify-content:flex-start; flex-wrap:wrap; color:#fff; }

/* 幻灯片按钮 - 主按钮深绿白字，次要按钮白色深绿字 */
.hero-actions .btn-primary {
  background:linear-gradient(135deg, #1a4d3a 0%, #2d6b4f 100%); color:#fff; border-color:#1a4d3a;
  box-shadow:0 4px 14px rgba(26,77,58,.45);
}
.hero-actions .btn-primary:hover {
  background:linear-gradient(135deg, #0d3323 0%, #1a4d3a 100%); border-color:#0d3323;
  box-shadow:0 6px 20px rgba(26,77,58,.55);
  transform:translateY(-2px);
}
.hero-actions .btn-outline {
  background:rgba(255,255,255,.92); color:#1a4d3a;
  border-color:rgba(255,255,255,.92);
}
.hero-actions .btn-outline:hover {
  background:#fff; color:#0d3323;
  border-color:#fff;
}

.hero-slide:not(.active) [data-anim] {
  opacity:0; transform:translateY(0);
}
.hero-slide.active [data-anim] {
  opacity:0;
}
.hero-slide.active [data-anim=fadeInDown] {
  animation:heroFadeDown .7s ease .2s both;
}
.hero-slide.active [data-anim=fadeInUp] {
  animation:heroFadeUp .7s ease .2s both;
}
.hero-slide.active [data-anim=fadeInSub] {
  animation:heroFadeUp .7s ease .5s both;
}
.hero-slide.active [data-anim=fadeInBtns] {
  animation:heroFadeUp .7s ease .7s both;
}
.hero-slide.active [data-anim=fadeInCards] {
  animation:heroFadeUp .7s ease .35s both;
}

@keyframes heroFadeUp {
  from { opacity:0; transform:translateY(40px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes heroFadeDown {
  from { opacity:0; transform:translateY(-20px); }
  to { opacity:1; transform:translateY(0); }
}

.hero-dots {
  position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
  display:flex; gap:12px; z-index:10;
}
.hero-dot {
  width:12px; height:12px; border-radius:50%;
  background:rgba(255,255,255,.3); cursor:pointer;
  transition:all .3s ease; border:2px solid transparent;
}
.hero-dot.active {
  background:var(--primary);
  border-color:#fff;
  transform:scale(1.2);
}
.hero-dot:hover { background:rgba(255,255,255,.6); }

.hero-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:10; width:50px; height:50px; border-radius:50%;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15);
  color:#fff; font-size:2rem; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:all .3s ease; user-select:none;
}
.hero-arrow:hover { background:rgba(255,255,255,.25); transform:translateY(-50%) scale(1.1); }
.hero-arrow-prev { left:20px; }
.hero-arrow-next { right:20px; }
@media(max-width:768px) {
  .hero-arrow { width:36px; height:36px; font-size:1.4rem; }
  .hero-arrow-prev { left:8px; }
  .hero-arrow-next { right:8px; }
  .hero-dots { bottom:20px; }
}

/* ===== 向下滚动引导指示器 ===== */
.hero-scroll-indicator {
  position:absolute;
  bottom:100px;
  left:50%;
  transform:translateX(-50%);
  z-index:10;
  cursor:pointer;
  animation:scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width:24px; height:38px;
  border:2px solid rgba(255,255,255,.7);
  border-radius:13px;
  position:relative;
  margin:0 auto;
}
.scroll-wheel {
  width:4px; height:9px;
  background:rgba(255,255,255,.8);
  border-radius:3px;
  position:absolute;
  top:8px; left:50%;
  transform:translateX(-50%);
  animation:scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity:1; transform:translateX(-50%) translateY(0); }
  100% { opacity:0; transform:translateX(-50%) translateY(14px); }
}
@keyframes scrollBounce {
  0%, 100% { transform:translateX(-50%) translateY(0); }
  50% { transform:translateX(-50%) translateY(8px); }
}

@media (prefers-reduced-motion:reduce) {
  .hero-slide, .hero-slide *,
  .hero-scroll-indicator,
  .scroll-mouse, .scroll-wheel { animation:none!important; transition:none!important; }
  .hero-scroll-indicator { display:none; }
}

/* ===== 幻灯片左侧产品图 ===== */
.hero-products {
  flex:0 0 60%;
  padding-right:60px;
}
.hero-container--vertical .hero-products {
  flex:0 0 auto;
  padding-right:0;
  width:100%;
  max-width:none;
}
.hero-product-card {
  display:block;
  width:100%;
  border-radius:12px;
  overflow:hidden;
  text-decoration:none;
  transition:all .3s ease;
}
.hero-product-card:hover {
  transform:translateY(-4px);
}
.hero-product-card img {
  width:100%;
  height:auto;
  display:block;
}
.hero-product-card svg {
  width:40px; height:40px;
  opacity:.5; color:#fff;
}
/* 第二张幻灯片：4个产品图 2x2 网格 */
.hero-products--grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  align-content:start;
}
.hero-products--plain .hero-product-card--grid {
  border:none;
  background:none;
  box-shadow:none;
  overflow:hidden;
}
.hero-products--plain .hero-product-card--grid img {
  width:100%; height:auto; aspect-ratio:auto; object-fit:contain;
}
.hero-product-card--grid {
  border:4px solid rgba(255,255,255,.85);
  border-radius:12px;
  background:rgba(255,255,255,.06);
  box-shadow:0 4px 14px rgba(0,0,0,.18);
  overflow:hidden;
}
.hero-product-card--grid img {
  width:100%; height:100%; aspect-ratio:4/3; object-fit:cover; display:block;
}
.hero-product-card--grid:hover {
  transform:translateY(-4px);
  border-color:#fff;
}
@media(max-width:1200px) {
  .hero-products { padding-right:18px; }
  .hero-text { padding-left:18px; }
}
@media(max-width:768px) {
  .hero-products { display:none; }
}
.hero-articles--grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  align-content:start;
}
.hero-article-card {
  display:block;
  border:3px solid rgba(255,255,255,.85);
  border-radius:12px;
  overflow:hidden;
  text-decoration:none;
  transition:all .3s ease;
}
.hero-article-card:hover {
  transform:translateY(-4px);
  border-color:#fff;
}
.hero-article-card img {
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}

/* ===== CSS变量定义 ===== */
:root {
  --primary: #85ce03;
  --primary-dark: #00b050;
  --primary-light: #9de035;
  --secondary: #4A5456;
  --accent: #2563eb;
  --text-primary: #1e293b;
  --text-secondary: #333333;
  --text-muted: #333333;
  --bg-primary: #ffffff;
  --bg-secondary: #F5F9F8;
  --bg-tertiary: #EDF3F1;
  --border: #D5E0DC;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 基础布局 ===== */
.container {
  width: 75%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 10px;
}

@media(max-width:768px) {
  .container { width:100%; padding:0 15px; }
}

/* ===== 通用区块样式 ===== */
.home-section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  .home-section {
    padding: 60px 0;
  }
}

/* 区块标题通用样式 */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  width: 100%;
}

.section-title {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title .title-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-header--light .section-title,
.section-title--light { color: #fff; }
.section-header--light .section-subtitle,
.section-subtitle--light { color: rgba(255,255,255,0.8); }

/* ===== 按钮样式 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(133, 206, 3, 0.39);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(133, 206, 3, 0.5);
}

.btn-outline {
  background: transparent;
  color: #1a4d3a;
  border-color: #1a4d3a;
}

.btn-outline:hover {
  background: #1a4d3a;
  color: #fff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.125rem;
}

/* ===== 模块1：品牌Slogan+核心简介 ===== */
.section-intro {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
}
.intro-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.05);
}
.intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 51, 35, 0.92) 0%, rgba(26, 77, 58, 0.82) 50%, rgba(74, 139, 58, 0.78) 100%);
  z-index: 1;
}
.section-intro .container {
  position: relative;
  z-index: 2;
}
.intro-inner {
  max-width: 960px;
}
.intro-slogan {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 18px 0 36px;
  letter-spacing: 1px;
}
.intro-slogan-accent {
  background: linear-gradient(135deg, #a8d5ba 0%, #85ce03 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.intro-text {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
  max-width: 880px;
}
.intro-text p { margin-bottom: 18px; }
.intro-actions {
  margin-top: 44px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.intro-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}
.intro-btn-light:hover {
  background: #fff;
  color: #1a4d3a;
  border-color: #fff;
}
@media (max-width: 768px) {
  .section-intro { padding: 70px 0; }
  .intro-actions { flex-direction: column; align-items: stretch; }
  .intro-btn-light, .intro-actions .btn { width: 100%; }
}

/* ===== 模块2：核心主营业务 ===== */
.section-core { background: var(--bg-secondary); }
.core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.core-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.core-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.core-img-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.core-img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: #e8f0ea;
}
.core-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 77, 58, 0.5) 100%);
}
.core-num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background: rgba(26, 77, 58, 0.7);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.core-body {
  padding: 28px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.core-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 14px;
}
.core-title a {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease;
}
.core-title a:hover { color: var(--primary); }
.core-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 3px;
}
.core-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 22px;
  flex: 1;
}
.core-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}
.core-link:hover { color: var(--primary); gap: 8px; }
@media (max-width: 1100px) {
  .core-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .core-grid { grid-template-columns: 1fr; }
}

/* ===== 模块3：上海区县GEO服务 ===== */
.section-geo { background: #fff; }
.geo-intro {
  max-width: 1000px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1rem;
  line-height: 2;
  color: var(--text-secondary);
}
.geo-districts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}
.geo-district {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 110px;
  padding: 18px 24px;
  background: #f6faf7;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.geo-district::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}
.geo-district > * { position: relative; z-index: 1; }
.geo-district:hover {
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(133, 206, 3, 0.3);
}
.geo-district:hover::before { opacity: 1; }
.geo-district--hot {
  background: linear-gradient(135deg, rgba(133, 206, 3, 0.12), rgba(107, 168, 2, 0.08));
  border-color: rgba(133, 206, 3, 0.4);
}
.geo-district-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}
.geo-district:hover .geo-district-sub { color: rgba(255,255,255,0.85); }
.geo-advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.geo-adv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 18px;
  background: linear-gradient(180deg, #f6faf7 0%, #fff 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.geo-adv:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.geo-adv svg {
  width: 36px;
  height: 36px;
  color: var(--primary-dark);
}
.geo-adv span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
@media (max-width: 768px) {
  .geo-districts { gap: 10px; }
  .geo-district { min-width: 90px; padding: 14px 16px; font-size: 0.95rem; }
  .geo-advantages { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 模块4：热门绿植产品 ===== */
.section-plants { background: var(--bg-secondary); }
.plants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.plant-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.plant-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.plant-img {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: #e8f0ea;
  position: relative;
}
.plant-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
}
.plant-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.plant-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.plant-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}
.plant-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.plant-desc {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-secondary);
  flex: 1;
  max-height: 7.4em;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .plants-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .plants-grid { grid-template-columns: 1fr; }
}

/* ===== 模块5：场景化解决方案 ===== */
.section-solutions { background: #fff; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.solution-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.solution-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #e8f0ea;
  transition: transform 0.6s ease;
}
.solution-card:hover .solution-img { transform: scale(1.08); }
.solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 51, 35, 0) 0%, rgba(13, 51, 35, 0.6) 100%);
  transition: var(--transition);
}
.solution-card:hover .solution-overlay {
  background: linear-gradient(180deg, rgba(13, 51, 35, 0) 0%, rgba(13, 51, 35, 0.6) 100%);
}
.solution-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  color: #fff;
  z-index: 2;
}
.solution-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #a8d5ba;
  margin-bottom: 10px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
}
.solution-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.solution-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.solution-card:hover .solution-desc {
  max-height: 120px;
  opacity: 1;
}
@media (max-width: 1100px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { height: 320px; }
  .solution-desc { max-height: 120px; opacity: 1; }
}

/* ===== 模块6：企业实力 ===== */
.section-strength {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
}
.strength-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  background-color: #0d3323;
}
.strength-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 51, 35, 0.94) 0%, rgba(26, 77, 58, 0.88) 100%);
  z-index: 1;
}
.section-strength .container { position: relative; z-index: 2; }
.strength-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.stat-item {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  border-color: rgba(168, 213, 186, 0.4);
}
.stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #a8d5ba;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-num em {
  font-size: 0.5em;
  font-style: normal;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
}

.strength-body p { margin-bottom: 18px; }
@media (max-width: 768px) {
  .section-strength { padding: 70px 0; }
  .strength-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 40px; }
  .stat-item { padding: 24px 10px; }
}

/* ===== 模块7：痛点对比 ===== */
.section-compare { background: var(--bg-secondary); }
.compare-table {
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26,77,58,.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.compare-head-col {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
}
.compare-head-bad {
  background: #fef4f4;
  border-bottom: 1px solid #fde8e8;
}
.compare-head-good {
  background: linear-gradient(135deg, #1a4d3a 0%, #2d6b4f 100%);
  color: #fff;
  border-bottom: 1px solid #1a4d3a;
}
.compare-head-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-head-bad .compare-head-icon {
  background: #fde8e8;
  color: #c53030;
}
.compare-head-good .compare-head-icon {
  background: rgba(255,255,255,0.2);
  color: #c7e98a;
}
.compare-head-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: inherit;
}
.compare-head-text p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.85;
}
.compare-col-side {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-col-bad {
  background: #fff;
  border-right: 1px dashed #e5e7eb;
}
.compare-col-good {
  background: #f7faf7;
}
.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  transition: all .3s;
}
.compare-col-bad .compare-item {
  background: #fefafa;
  border: 1px solid #fce8e8;
}
.compare-col-bad .compare-item:hover {
  background: #fde8e8;
  transform: translateX(-3px);
}
.compare-col-good .compare-item {
  background: #fff;
  border: 1px solid #e5efe5;
}
.compare-col-good .compare-item:hover {
  border-color: #85ce03;
  background: #f0f7ee;
  transform: translateX(3px);
}
.compare-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 1px;
}
.compare-col-bad .compare-mark {
  background: #fde8e8;
  color: #c53030;
}
.compare-col-good .compare-mark {
  background: linear-gradient(135deg, #1a4d3a, #2d6b4f);
  color: #c7e98a;
}
.compare-item p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #333333;
}
@media (max-width: 768px) {
  .compare-table { grid-template-columns: 1fr; }
  .compare-head-bad { border-bottom: none; }
  .compare-head-good { border-bottom: 1px solid #1a4d3a; }
  .compare-col-bad { border-right: none; border-bottom: 1px dashed #e5e7eb; }
  .compare-col-side { padding: 18px 20px; gap: 10px; }
  .compare-head-col { padding: 20px 22px; }
  .compare-head-text h3 { font-size: 1.1rem; }
  .compare-item { padding: 12px 14px; }
  .compare-item p { font-size: 0.9rem; }
}


/* ===== 模块8：核心服务优势 ===== */
.section-advantages { background: #fff; }
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.advantage-card {
  position: relative;
  padding: 40px 30px 36px;
  background: linear-gradient(180deg, #f6faf7 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
}
.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.advantage-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}
.advantage-card:hover::before { transform: scaleX(1); }
.advantage-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(133,206,3,0.15), rgba(107,168,2,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.advantage-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-dark);
}
.advantage-card:hover .advantage-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: rotate(-6deg) scale(1.05);
}
.advantage-card:hover .advantage-icon svg { color: #fff; }
.advantage-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.advantage-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
@media (max-width: 1100px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .advantages-grid { grid-template-columns: 1fr; }
}

/* ===== 模块9：案例+资讯 ===== */
.section-cases-news { background: var(--bg-secondary); }
.cases-intro {
  max-width: 1000px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1rem;
  line-height: 2;
  color: var(--text-secondary);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.case-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.case-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%);
}
.case-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: rgba(26,77,58,0.92);
  color: #c7e98a;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.case-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px;
  line-height: 1.5;
}
.case-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 14px;
  flex: 1;
}
.case-meta {
  font-size: 0.8rem;
  color: var(--primary-dark);
  padding-top: 12px;
  border-top: 1px dashed #e5efe5;
  font-weight: 500;
}
.cases-more {
  text-align: center;
  margin-bottom: 56px;
}
.news-section {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid #e5efe5;
}
.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.news-card {
  display: flex;
  gap: 22px;
  padding: 26px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26,77,58,.06);
  border: 1px solid #e5efe5;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #85ce03, #1a4d3a);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(26,77,58,.14);
  border-color: #c7e98a;
}
.news-card:hover::before { transform: scaleY(1); }
.news-date {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  background: linear-gradient(135deg, #f0f7ee, #e5efe5);
  border-radius: 14px;
  border: 1px solid #d4e5d4;
  transition: var(--transition);
}
.news-card:hover .news-date {
  background: linear-gradient(135deg, #1a4d3a, #2d6b4f);
  border-color: #1a4d3a;
}
.news-date-day {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  transition: var(--transition);
}
.news-card:hover .news-date-day { color: #c7e98a; }
.news-date-month {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 1px;
  transition: var(--transition);
}
.news-card:hover .news-date-month { color: rgba(255,255,255,0.85); }
.news-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.news-meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.82rem;
}
.news-cat-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(133,206,3,0.15);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.news-cat {
  font-weight: 600;
  color: var(--primary-dark);
}
.news-dot {
  color: var(--text-muted);
  margin: 0 2px;
}
.news-date-text {
  color: var(--text-muted);
}
.news-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.5;
  transition: var(--transition);
}
.news-card:hover .news-title { color: var(--primary-dark); }
.news-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: var(--transition);
}
.news-card:hover .news-readmore { gap: 10px; }
.news-readmore svg { transition: var(--transition); }
.news-more {
  text-align: center;
  margin-top: 36px;
}
@media (max-width: 1100px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .news-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cases-grid { grid-template-columns: 1fr; gap: 16px; }
  .case-img { height: 180px; }
  .news-list { grid-template-columns: 1fr; }
  .news-card { padding: 20px 22px; gap: 16px; }
  .news-date { width: 60px; padding: 10px 6px; }
  .news-date-day { font-size: 1.5rem; }
  .news-title { font-size: 1rem; }
  .news-section { margin-top: 48px; padding-top: 40px; }
}



/* ===== CTA底部行动召唤 ===== */
.section-cta {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, #0d3323 0%, #1a4d3a 50%, #2d6b4f 100%);
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(133,206,3,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.section-cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,213,186,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.cta-title {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.cta-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.cta-btn-light:hover {
  background: #fff;
  color: #1a4d3a;
  border-color: #fff;
}
@media (max-width: 768px) {
  .section-cta { padding: 60px 0; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
}

/* ===== 移动端整体适配 ===== */
@media (max-width: 768px) {
  .home-section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .core-img { height: 180px; }
  .plant-img { aspect-ratio: 1 / 1; }
}