
/* ---------- 1. 设计变量 ---------- */
:root {
  /* 品牌色 */
         /* 板块主蓝（渐变起点） */
  --color-primary-end: #52799f;     /* 板块主蓝（渐变终点） */
  --color-accent: #48c4b7;          /* 强调青 */
  --color-ink-on-accent: #0f2c3b;   /* 青色底上的深色文字 */

  /* 文字 */
  --color-ink: #14263a;             /* 主文字（近黑蓝） */
  --color-ink-soft: #687588;        /* 次要文字（灰蓝） */
  --color-on-primary: #ffffff;      /* 深蓝底上的主文字 */
  --color-on-primary-sub: #e2ebf3;  /* 深蓝底上的段落文字 */
  --color-on-primary-muted: #c0cdd9;/* 深蓝底上的弱化文字（联系方式） */

  /* 背景 & 边框 */
  --color-bg: #f7f8fa;              /* 页面底色 */
  --color-card: #ffffff;            /* 卡片底色 */
  --color-border: #e4e8ee;          /* 卡片描边 */

  /* 状态色（卡片图标） */
  --color-danger: #e5484d;
  --color-warning: #f5a623;
  --color-blue: #3b6bb3;
  --color-teal: #2baba1;

  /* 尺寸 & 效果 */
  --radius-card: 16px;
  --shadow-card: 0 4px 16px rgba(20, 38, 58, .06);
  --shadow-hover: 0 16px 40px rgba(20, 38, 58, .12);
  --ease: all .3s ease;

  /* 渐变 */
  --grad-blue: linear-gradient(90deg, #537bad, #52799f);
  --grad-light: linear-gradient(180deg, #fafbfc, #f3f5f8);
  --grad-teal: linear-gradient(135deg, #2baba1, #3dbdb4);
}
 
 

/* ---------- 3. 通用：容器 / 板块 / 标题区 ---------- */
 
.section {padding: 60px 0;}
.section--light { background: var(--grad-light); }
.section--white { background: var(--color-card); }

@media (min-width: 768px) {
  .section {}
}

.section-head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head__eyebrow {
  display: block;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head__title {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.5px;
  color: #0f1c2e;
}

.section-head__desc {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-ink-soft);
}

/* ---------- 4. 卡片通用 ---------- */
.card-grid { display: grid; gap: 24px; }
.card-grid--4 { grid-template-columns: 1fr; }
.card-grid--3 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  position: relative;
  overflow: hidden;
  background: #f9fafb;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: var(--ease);
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* 卡片底部 hover 渐变条 */
.card__line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--grad-teal);
  transition: width .3s ease;
}

.card:hover .card__line { width: 100%; }

.card__title { font-size: 17px; font-weight: 600; line-height: 1.3; }

.card__desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-ink-soft);
}

/* 卡片图标（The Challenge 板块） */
.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.card__icon svg { width: 20px; height: 20px; }

.card__icon--danger  { background: rgba(229,72,77,.08); border: 1px solid rgba(229,72,77,.15); color: var(--color-danger); }
.card__icon--warning { background: rgba(245,166,35,.08); border: 1px solid rgba(245,166,35,.15); color: var(--color-warning); }
.card__icon--blue    { background: rgba(59,107,179,.05); border: 1px solid rgba(59,107,179,.15); color: var(--color-blue); }
.card__icon--teal    { background: rgba(43,171,161,.08); border: 1px solid rgba(43,171,161,.15); color: var(--color-teal); }

/* 带图卡片（Our Technology 板块） */
.card--media { display: flex; flex-direction: column; padding: 0; }

.card--media .card__media {
  height: 208px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.card--media .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.card--media .card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.card--media .card__title {font-size: 28px;color: #0f1c2e;}
.card--media .card__desc { flex: 1; }

/* 标签徽章 */
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.card__tag {
  padding: 4px 10px;
  border-radius: 6px;
  background: #eef2f6;
  color: #0f1c2e;
  font-size: 12px;
  font-weight: 500;
}

/* ---------- 5. 通用按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: opacity .2s ease;
}

.btn:hover { opacity: .9; }

.btn--accent { background: var(--color-accent); color: var(--color-ink-on-accent); }
.btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }

/* ---------- 6. 成功案例（深蓝渐变板块） ---------- */
.stories {
  background: var(--grad-blue);
  color: var(--color-on-primary);
  padding: 80px 60px;
}

.stories__inner { max-width: 1320px; margin: 0 auto; }

.stories__eyebrow {
  text-align: center;
  color: var(--color-accent);
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.stories__title {
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 60px;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story__img { width: 100%; border-radius: 12px; }

.story__heading { font-size: 38px; line-height: 1.2; margin-bottom: 24px; }

.story__text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-on-primary-sub);
  margin-bottom: 18px;
}

.story__benefits { margin: 30px 0; }

.story__benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
}

.story__benefit-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
}

/* ---------- 7. 商业价值（Why COSO 板块） ---------- */
.card--value .card__num {
  display: block;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: #026eb7;
}

.card--value .card__title {margin-top: 20px;font-size: 28px;color: #0f1c2e;}
.card--value .card__desc { margin-top: 12px; font-size: 14px; }

/* ---------- 8. CTA 板块 ---------- */
.cta-section { padding: 80px 20px; }

.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 50px;
  background: var(--grad-blue);
  border-radius: 20px;
  color: var(--color-on-primary);
  box-shadow: 0 10px 40px rgba(20, 38, 58, .08);
}

.cta__img { width: 100%; border-radius: 16px; }

.cta__eyebrow {
  color: var(--color-accent);
  font-size: 22px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cta__heading { font-size: 54px; line-height: 1.15; margin-bottom: 22px; }

.cta__desc {
  color: #d8e3ee;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.cta__actions { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 32px; }

.cta__contact { display: flex; flex-wrap: wrap; gap: 32px; color: var(--color-on-primary-muted); font-size: 15px; }

.cta__contact-item { display: flex; align-items: center; gap: 8px; }
.cta__contact-item svg { width: 14px; height: 14px; color: var(--color-accent); }

/* ---------- 9. 响应式 ---------- */
@media (max-width: 992px) {
  .stories { padding: 50px 24px; }
  .stories__title { font-size: 36px; }
  .story__heading { font-size: 28px; }
  .story { grid-template-columns: 1fr; }

  .cta { grid-template-columns: 1fr; padding: 32px 24px; }
  .cta__heading { font-size: 36px; }
}

.main {
  padding-top: 80px;
  padding-bottom: 50px;
  background: #f7f8fa;
}

.news-top a {
  font-size: 16px;
  color: #999;
  font-weight: 700
}

.news-top a i {
  font-size: 18px;
  vertical-align: middle
}

.newsnr h1 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    /* color: #0f172a; */
    line-height: 1.15;
    margin-bottom: 24px;
}

.newsnr .artInfo {
  text-align: center;
  margin: 25px 0 0;
  position: relative
}

.newsnr .artInfo span {
  margin: 0 30px;
  line-height: 20px;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #666
}

.newsnr .artInfo span.time {
  background: url('../images/time.png') no-repeat left center;
  padding: 0 0 0 36px
}

.newsnr .artInfo span.hit {
  background: url('../images/hit.png') no-repeat left center;
  padding: 0 0 0 36px
}

.myart {
  margin: 60px 0 0;
  padding: 50px 0 0;
  line-height: 32px;
  font-size: 17px;
  color: #666;
  border-top: 1px solid #eee
}

.myart h5 {
  font-size: 22px;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px
}

.myart p {
  margin-bottom: 20px
}

.myart .row {
  margin-bottom: 20px
}

.myart .row p {
  text-align: center
}

.myart table {
  width: 100%
}

.myart table td {
  padding: 5px;
  border: 1px solid #333;
  text-align: center
}

.scroll-pic {
  margin-bottom: 30px;
  margin-top: 30px;
  overflow: hidden
}

.scroll-pic p {
  text-align: center;
  margin-top: 10px
}

.scroll-pic .swiper-pagination {
  position: static;
  width: 100%;
  margin-top: 25px
}

.scroll-pic .swiper-pagination-bullet {
  height: 9px;
  width: 9px;
  margin: 0 12px;
  background: #ccc;
  border-radius: 0;
  opacity: 1;
  box-sizing: border-box
}

.scroll-pic .swiper-pagination-bullet-active {
  background: var(--swiper-btn-color)
}

.pro-bar {
  margin: 55px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 45px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center
}

.pro-bar a {
  line-height: 28px;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  box-sizing: border-box
}

.pro-bar a:not(:nth-child(2)) {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: relative
}

.pro-bar a:nth-child(2) {
  width: 125px;
  text-align: center;
  display: block
}

.pro-bar a span {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center
}

.pro-bar a span i {
  margin: 2px 20px 0 0;
  font-size: 20px;
  vertical-align: middle;
  display: inline-block
}

.pro-bar a p {
  margin: 0 0 0 20px
}

.pro-bar a:last-child {
  -webkit-justify-content: flex-end;
  justify-content: flex-end
}

.pro-bar a:last-child span i {
  margin: 2px 0 0 20px
}

.pro-bar a:last-child p {
  margin: 0 20px 0 0
}

.pro-bar a:hover {
  color: var(--link-color-hover)
}

.pro-bar a:hover p {
  text-decoration: underline;
  color: var(--text-color-active)
}

.rela-pro {}

.rela-pro .tit {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center
}

.rela-pro .tit h5 {
  font-size: 22px;
  color: #333;
  font-weight: 700;
  line-height: 1
}

.rela-pro .tit .page {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center
}

.rela-pro .tit .page .swiper-button-prev,
.rela-pro .tit .page .swiper-button-next {
  width: 37px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  background: var(--color-primary);
  position: static;
  margin-top: 0
}

.rela-pro .tit .page .swiper-button-prev i,
.rela-pro .tit .page .swiper-button-next i {
  font-size: 13px;
  color: #fff;
  display: inline-block;
  margin-top: 2px
}

.rela-pro .tit .page .swiper-button-next {
  margin-left: 14px
}

.rela-pro .tit .page .swiper-button-prev::after,
.rela-pro .tit .page .swiper-button-next::after {
  display: none;
}
 
.rela-pro .tit .page .swiper-button-prev:hover,
.rela-pro .tit .page .swiper-button-next:hover {
  background: #333
}

.rela-pro .list {
  margin: 25px 0 0
}

.rela-pro .swiper-slide {}

.rela-pro .swiper-slide a {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden
}

.rela-pro .swiper-slide a > img {
  width: 100%;
  display: block;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s
}

.rela-pro .swiper-slide .t {
  position: absolute;
  background: rgb(0 0 0 / 57%);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 40px;
  opacity: 0;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
  transition: opacity 0.2s, transform 0.35s;
  -webkit-transform: scale(0);
  transform: scale(0)
}

.rela-pro .swiper-slide .t::after {
  content: "";
  height: 2px;
  position: absolute;
  left: 15px;
  width: 0;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease 0.3s;
  -webkit-transition: all 0.3s ease 0.3s
}

.rela-pro .swiper-slide .t p {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0.5px;
  padding: 0 0 0 30px;
  position: relative
}

.rela-pro .swiper-slide .t p::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: #fff;
  font-weight: 400
}

.rela-pro .swiper-slide .t2 {
  padding: 0 70px
}

.rela-pro .swiper-slide .t2 p {
  font-size: 17px;
  line-height: 36px
}

.rela-pro .swiper-slide:hover .t {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1)
}

.rela-pro .swiper-slide:hover .t::after {
  width: calc(100% - 30px)
}

.rela-pro .swiper-pagination {
  display: none;
  position: static;
  width: 100%;
  margin-top: 20px
}

.rela-pro .swiper-pagination-bullet {
  height: 8px;
  width: 8px;
  margin: 0 3px;
  background: #40409c;
  border-radius: 10px;
  opacity: 1;
  box-sizing: border-box
}

.rela-pro .swiper-pagination-bullet-active {
  width: 12px;
  background: #00007b
}

@media screen and (max-width: 768px) {
  .main {
    padding-top: 25px;
    padding-bottom: 30px
  }

  .news-top a {
    font-size: 15px
  }

  .newsnr h1 {
    font-size: 18px;
    line-height: 1.5;
    margin: 15px 0 0
  }

  .newsnr .artInfo span {
    margin: 0 5px;
    font-size: 13px
  }

  .myart img{
    width: 100%;
    height: auto
  }

  .myart {
    line-height: 24px;
    font-size: 14px;
    margin: 20px 0 0;
    padding: 20px 0 15px
  }

  .myart h5 {
    font-size: 20px;
    margin-bottom: 12px
  }

  .myart .row {
    margin-bottom: 0
  }

  .myart .row > divl {
    margin-bottom: 5px
  }

  .scroll-pic {
    margin-bottom: 15px
  }


  .pro-bar {
    margin: 20px 0;
    padding: 20px 0
  }

  .pro-bar a span i {
    margin: 2px 15px 0 0
  }

  .pro-bar a p {
    display: none
  }

  .pro-bar a:last-child span i {
    margin: 2px 0 0 15px
  }

  .rela-pro .tit h5 {
    font-size: 20px
  }

  .rela-pro .tit .page .swiper-button-prev,
  .rela-pro .tit .page .swiper-button-next {
    width: 34px;
    height: 34px;
    line-height: 34px
  }

  .rela-pro .tit .page .swiper-button-next {
    margin-left: 10px
  }

  .rela-pro .list {
    margin: 25px 0 0
  }

  .rela-pro .swiper-slide .t {
    position: static;
    padding: 15px 10px;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  .rela-pro .swiper-slide .t::after {
    display: none
  }

  .rela-pro .swiper-slide .t p {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.5px;
    padding: 0
  }

  .rela-pro .swiper-slide .t p::before {
    display: none
  }

  .rela-pro .swiper-slide .t2 {
    padding: 15px 10px
  }

  .rela-pro .swiper-slide .t2 p {
    font-size: 14px;
    line-height: 22px
  }
}
 
 .section-wrap {
          padding: 80px 0;
          background: linear-gradient(180deg, hsl(210 20% 98%), hsl(210 18% 96%));
        }
       .card-grid--4{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }
.card-grid{
            display: grid;
           
            gap: 24px;
            margin-bottom: 40px;
        }
        .card-grid--3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }
        .risk-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 28px 24px;
            border: 1px solid #e2e8f0;
        }
        .card-icon-box {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        .icon-metal {
            border: 1px solid #fecdd3;
            color: #ef4444;
        }
        .icon-human {
            border: 1px solid #fed7aa;
            color: #f97316;
        }
        .icon-machine {
            border: 1px solid #c7d2fe;
            color: #4f46e5;
        }
        .icon-product {
            border: 1px solid #bbf7d0;
            color: #10b981;
        }
        .card-icon {
            font-size: 20px;
        }
        .card-title {
            font-size: 18px;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 12px;
        }
        .card-text {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
        }
        .section-img-box {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 4/1;
            position: relative;
        }
        .section-img {
            width: 100%;
            display: block;
            object-fit: cover;
        }
        /* å“åº”å¼é€‚é… */
        @media (max-width: 1024px) {
            .card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .section-title {
                font-size: 36px;
            }
        }
        @media (max-width: 640px) {
            .card-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 28px;
            }
        }
/*--------æ¿å—2-----*/
 .tech-section-wrap {
           padding: 80px 0;
        }
        .section-top-label {
            text-align: center;
            font-size: 13px;
            letter-spacing: 1px;
            color: #22a899;
            margin-bottom: 16px;
        }
        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.15;
            margin-bottom: 24px;
        }
        .section-desc {
            text-align: center;
            max-width: 840px;
            margin: 0 auto 52px;
            font-size: 16px;
            color: #64748b;
            line-height: 1.7;
        }
        .tech-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .tech-card {
            background: #ffffff;
            border-radius: 14px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }
        .card-img-container {
            position: relative;
            width: 100%;
            /* height: 260px; */
            overflow: hidden;
        }
        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .img-overlay-tag {
            position: absolute;
            left: 24px;
            bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 13px;
            font-weight: 500;
        }
        .tag-icon-box {
            width: 32px;
            height: 32px;
            background: rgba(20, 80, 160, 0.75);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .card-content {
            padding: 28px 24px;
        }
        .card-title {
            font-size: 26px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 16px;
        }
        .card-desc {
            font-size: 14px;
            color: #64748b;
            line-height: 1.65;
            margin-bottom: 24px;
        }
        .feature-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 28px;
        }
        .feature-tag {
            padding: 5px 12px;
            background: #f1f5f9;
            border-radius: 20px;
            font-size: 13px;
            color: #334155;
        }
        .learn-more-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: #22a899;
            font-weight: 500;
            text-decoration: none;
        }
        /* å“åº”å¼é€‚é… */
        @media (max-width: 1024px) {
            .tech-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .section-title {
                font-size: 38px;
            }
        }
        @media (max-width: 680px) {
            .tech-card-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 30px;
            }
            .card-img-container {
                height: 220px;
            }
        }


/*------box3----------*/
 .why-coso-section {
            background: #f8f9fa;
            margin: 0 auto;
            padding: 80px 0px;
        }
        .section-label {
            text-align: center;
            font-size: 14px;
            color: #289c94;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .section-heading {
      text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 24px;
        }
        .section-desc {
            max-width: 720px;
            margin: 0 auto 50px;
            text-align: center;
            font-size: 16px;
            color: #64748b;
            line-height: 1.6;
        }
        .cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .impact-card {
            position: relative;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 14px;
            padding: 36px 30px;
            overflow: hidden;
        }
        .card-number-bg {
            position: relative;
            /* top: 24px; */
            /* left: 0; */
            font-size: 72px;
            font-weight: 600;
            color: #f1f5f9;
            z-index: 1;
            line-height: 1;
        }
        .card-icon {
            position: relative;
            z-index: 2;
            width: 42px;
            height: 42px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            margin-top: 20px;
        }
        .icon-green {
            background-color: #2cb8a2;
        }
        .icon-blue {
            background-color: #2557b3;
        }
        .icon-orange {
            background-color: #f7b030;
        }
        .card-title {
            position: relative;
            z-index: 2;
            font-size: 24px;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 14px;
        }
        .card-text {
            position: relative;
            z-index: 2;
            font-size: 15px;
            color: #64748b;
            line-height: 1.65;
        }

        /* Responsive Layout */
        @media (max-width: 1024px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .section-heading {
                font-size: 38px;
            }
        }
        @media (max-width: 680px) {
            .cards-container {
                grid-template-columns: 1fr;
            }
            .section-heading {
                font-size: 32px;
            }
        }