
:root { 
  /* 主题色 */
  --c-primary: #444444;
  --c-primary-dark: #333333;
  --c-primary-light: #555555;
  
  /* 辅助色 */
  --c-accent: #DAA520;
  --c-accent-dark: #B8860B;
  --c-accent-light: #F0C040;
  
  /* 文本色 */
  --c-text-primary: #444444;
  --c-text-secondary: #000;
  --c-text-light: #999999;
  
  /* 背景色 */
  --c-bg: #ffffff;
  --c-bg-light: #ffffff;
  
  /* 边框色 */
  --c-border: #e0e0e0;
  
  /* 阴影 */
  --c-card-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  
  /* 过渡 */
  --c-transition: all 0.3s ease;
}

* { 
  box-sizing: border-box; 
  font-family: "Microsoft YaHei", "Source Han Sans SC", PingFang SC, Arial, sans-serif;
  
}

html, body { 
  margin: 0; 
  padding: 0; 
  font-family: 'Times New Roman', Georgia, serif;
  color: var(--c-text-primary);
  background-color: var(--c-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
/*background-image: url('../images/bj.png');background: linear-gradient(45deg, #faa658, #fad081);*/
.pageTitleBackground{
  color: white;
  background-image: url('../images/bj.png');
  position: relative;
  border-radius: 0;
  padding: 20px; /* 保留内边距，避免内容贴边 */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  max-width: 80%; /* 手机等小屏幕：填满宽度 */
  margin: 20px auto; /* 居中显示 */
  box-sizing: border-box; /* 确保padding不影响整体宽度计算 */
}
.pageTitleBackground h1{ 
  color: white; 
  font-size: 2.2rem;
}

.pageTitleBackground p{ 
  color: white; 
  font-size: 1.3rem;
}

/* 页面容器 - 基础样式（默认适配手机等小屏幕） */
.container {
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0;
  padding: 20px; /* 保留内边距，避免内容贴边 */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  max-width: 80%; /* 手机等小屏幕：填满宽度 */
  margin: 20px auto; /* 居中显示 */
  box-sizing: border-box; /* 确保padding不影响整体宽度计算 */
}



.container.nav {
  max-width: 100%;
  
  margin: 0;
  padding: 0 20px;
  background: transparent;
  box-shadow: none;
}
a { 
  color: var(--c-primary); 
  text-decoration: none; 
  transition: var(--c-transition);
}

a:hover { 
  color: var(--c-accent); 
  text-decoration: none;
}
.header { 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  background: rgba(255, 255, 255, 1); 
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); 
  margin: 0; 
  padding: 0; 
  width: 100%; 
}
.nav { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 24px 0; 
  margin: 0; 
  width: 100%; 
}

.nav .brand { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  font-weight: 900;
}

/* 品牌名称和标语样式 */
.nav .brand-name {
  color: #000000; /* 纯黑色 */
  font-size:  clamp(1.2rem, 2.2vw, 1.6rem); /* 显著增大字体大小 */
  font-weight: 500; /* 极粗体 */
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.nav .brand-tagline {
  color: #000000; /* 纯黑色 */
  font-size: clamp(0.9rem, 1.6vw, 1.2rem);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

.logoimg { 
  width: 90px; 
  height: 90px; 
  border-radius: 0; /* 移除圆角，保持矩形 */
  object-fit: contain;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0,0);
}
.nav ul { 
  list-style: none; 
  display: flex; 
  gap: 24px; 
  margin: 0; 
  padding: 0;
}

.nav a { 
  color: #000; 
  font-weight:500; 
  font-size: 17px;
  padding: 8px 0;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0,0);
}

.nav a.active, .nav a:hover { 
  color: var(--c-primary);
}

.nav a.active::after { 
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--c-accent);
  border-radius: 2px;
}

.language-switch {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-left: 12px;
  background-color: var(--c-bg);
  line-height: 1.4;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

.language-switch:hover {
  background-color: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-text-primary);
}

.btn-outline { 
  background: var(--c-bg); 
  color: var(--c-primary); 
  border: 2px solid var(--c-primary);
  box-shadow: 3px 3px 0 var(--c-primary);
}

.btn-outline:hover { 
  background: var(--c-primary); 
  color: var(--c-bg);
  border-color: var(--c-primary);
  box-shadow: 4px 4px 0 var(--c-accent);
}

.hero { 
    /* 核心定位与布局 */
    position: relative;
    z-index: 10; /* 内容层级高于视频 */
    background-image:  url('../images/bj.png');
    min-height: 80vh;/* 高度占80%整个视口 */
    padding: 100px 3%; /* 上下120px，左右3%，继承了第一段的留白逻辑 */
    width: 100%;
    margin-bottom: 40px;
    box-sizing: border-box;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-text-all{
  display: flex; 
  justify-content: flex-start; 
  align-items: center; 
  width: 95%; 
  position: relative; 
  z-index: 2;
  gap: 20px; /* 左右两块中间留白 */
  flex-wrap: wrap; /* 自动换行，为移动端打底 */
}
.hero-text-container{
  flex: 1 1 60%; 
  max-width: 60%; 
  padding: 0  0 0 20px; 
  box-sizing: border-box;
}
/* 卡片样式补充（直接加到你的CSS里） */
.hero-cards {
  display: flex;
  flex-direction: column; /* 设置 Flex 主轴方向为「垂直方向」，让子元素从上到下纵向排列 */
  gap: 6rem;
  align-items: flex-start;
   /* 关键：取消之前flex百分比限制，不压缩内部卡片 */
  flex: unset;
  max-width: 25%;
 
}
/*整个按钮设置成a标签*/
.hero-card-link {
  display: block; /* 让a标签撑满整个卡片 */
  text-decoration: none; /* 去掉默认下划线 */
  margin-bottom: 0; /* 卡片之间的间距，和你原来的布局一致 */
  width: 700px;
}
.hero-card {
  width: 80%;
  background: #fff; 
  color: #000;
  border-radius:12px; 
  padding:20px 30px; 
  box-shadow:0 4px 18px rgba(0,0,0,0.12); 
  display: flex; 
  align-items: flex-start; 
  gap: 12px;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden;
  /* 新增：缩放动画过渡，解决hover变形问题 */
  transition: transform 0.2s ease;
  /* 缩放基准点左上角，不会偏移 */
  transform-origin: left top;
  
}
.hero-card:hover{
   transform: scale(1.05); 
}
.card-icon{
  width: 40px; 
  height: 40px; 
  background: #d4a520; 
  border-radius: 50%; 
  flex-shrink: 0;
}
.card-content-title{
    font-size: 24px;
    margin: 0;
    line-height: 1.2;
    color: #0a2463;
    margin-bottom: 15px;
}

.hero-card-text h4 {
  font-size: 22px;
  margin: 0;
  line-height: 1.2;
  font-weight: 500;
}
.card-content{
  text-align: left;
  align-items: center; /* 垂直居中 */
}

.hero h1 { 
  font-size: 48px;
  line-height: 1.3;
  margin: 5px 0 24px;
  font-weight:500;
  color: white;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
  bottom: 3rem;
}

.hero p.lead { 
  color: white; 
  font-size: 20px;
  line-height: 1.8;
  max-width: 95%;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.hero-p-btn{
  display: flex; 
  gap: 10px;
  margin-top: 80px;
  
}

.btn{
    display: inline-block;
    color: #000;
    background-color: #F9C060;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover  {
   background-color: #f8cd58;
   transform: scale(1.05); 
   color: #000; 
   
}
.grid-3 { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 24px;
}
.card { 
  background: rgba(255, 255, 255, 0.98); 
  border: 1px solid var(--c-border); 
  border-radius: 0;
  padding: 24px;
  box-shadow: var(--c-card-shadow);
  transition: var(--c-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--c-accent);
}

/* 核心优势图片样式 */
.advantage-card {
  padding: 0 24px;
  overflow: hidden;
}

/* 2. 让图片容器重新贴边，不受上面 padding 影响 */
.advantage-image-container {
  width: calc(100% + 48px); /* 24+24=48 px 把左右 padding 补回来 */
  height: 240px;
  margin: 0 -24px;          /* 左右负 margin 拉回去 */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-bg);
}

/* 3. 其余样式保持不动 */
.advantage-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.advantage-card .badge {
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.advantage-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}

.advantage-card .subtle {
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
  line-height: 1.6;
  color: var(--c-text-secondary);
  font-size: 16px;
  word-wrap: break-word;
  hyphens: auto;
}

/* 应用领域卡片样式 */
.application-card {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.95);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.application-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* 应用领域图片容器 */
.application-image-container {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--c-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 应用领域图片样式 */
.application-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-card:hover .application-image {
  transform: scale(1.05);
}

/* 应用领域卡片标题样式 */
.application-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-text-primary);
}

/* 应用领域卡片描述样式 */
.application-card .subtle {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text-secondary);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .application-image-container {
    height: 150px;
  }
  
  .application-card h3 {
    font-size: 1.1rem;
  }
  .container {
    max-width: 80%; /* 电脑宽屏：占屏幕宽度的80% */
  }
 
  .btn{
    max-width:80%; /*手机端解除最大宽度，铺满屏幕 */
  }
}

.product-cards {
    display: flex;
    /* 关键：设置为水平排列，超出自动换行 */
    flex-direction: row; 
    flex-wrap: wrap; 
    /* 卡片之间的间距 */
    gap: 1.5rem; 
    /* 水平居中卡片 */
    justify-content: center; 
    /* 让所有卡片高度一致 */
    align-items: stretch; 
    width: 100%;
    margin: 10px auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* 产品卡片样式 */
.product-card {  
    flex: 1 1 350px; /* 自适应宽度：最小260px，自动分配空间 */
    max-width: 350px;
    height: auto; /* 固定卡片高度，保证所有卡片一样大 */
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;  
    margin-top: 20px;
     position: relative;
}


.product-image-container {
  display: flex;
  flex-wrap: wrap; /* 关键：允许卡片自动换行 */
  gap: 1rem; /*设置子元素之间的间距为 20px。因为是 column 方向，所以是上下间距为 20px */
  justify-content: center;
  align-items: stretch; /* 关键：让所有卡片高度自动拉平 */
  width:100%;
  /* 关键：用宽高比替代固定高度，比如 4:3 或 16:9 */
  aspect-ratio: 4 / 3.5; 
  /*height:300px;  图片占卡片的60% 高度 */
  background-color: #fff;
  overflow: hidden;/*图片超出容器的部分会被裁剪*/
  border-radius: 4px;
  
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);/*悬停时阴影变深、变大，增强立体感*/
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* 产品内容 */
.product-contentNew {
    position: relative; /* 必须设置！ */
    padding: 20px;
    flex-grow: 1;
    display: flex;
    /* 预留底部空间，防止按钮压到文字 */
    padding-bottom: 70px; 
    flex-direction: column;
    gap:6px;
}
.details-btn-container {
  position: absolute; /* 让整组按钮定位在卡片底部 */
  bottom: 25px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 8px; /* 两个按钮之间的间距，这里生效 */
  justify-content: flex-end;
}
.btn-outlinePro { 
  color: var(--c-primary);
  border: 2px solid var(--c-accent);
  padding:clamp(3px, 0.6vw, 6px) clamp(8px, 1.2vw,8px);
  border-radius: 4px;
  text-decoration: none;
  font-size: clamp(10px, 1.5vw, 15px);
  background: #fff;
  transition: 0.2s;
  white-space: nowrap; /* 防止文字换行挤压 */
}
/* 产品-查看详情鼠标悬浮效果（可选） */
.btn-outlinePro:hover { 
 
  background-color: var(--c-accent);
  color: var(--c-bg);
}

/* 产品描述富文本样式 */
.product-description {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-text-secondary);
}

/* 产品亮点样式 */
.product-highlight {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--c-primary);
}

/* 产品特性列表样式 */
.product-features {
    margin: 0 0 12px 0;
    padding-left: 20px;
}

.product-features li {
    margin-bottom: 6px;
    line-height: 1.5;
}

/* 产品应用领域样式 */
.product-application {
    margin-top: 12px;
    font-style: italic;
    color: var(--c-text-secondary);
}

/* 产品链接按钮 - 固定在底部并居中 */
.product-link {
  margin-top: auto; /* 关键：自动顶到容器底部 */
  margin-left: auto;
  margin-right: auto; /* 左右居中 */
  margin-bottom: 6px; /* 移除底部多余间距 */
  background: var(--c-bg); 
  color: var(--c-primary); 
 /* border: 2px solid var(--c-primary);
  box-shadow: 3px 3px 0 var(--c-primary);
   新增：改为块级元素，方便设置左右margin:auto居中 */
  display: block;
  /* 可选：限制按钮最大宽度，避免过宽 */
  max-width: 170px;
  /* 可选：添加内边距，优化点击区域 */
  padding: 8px 10px;
  text-align: center; /* 确保按钮文字居中 */
}


/* 滚动指示样式 */
.scroll-indicator {
    text-align: center;
    margin-top: 16px;
    color: var(--c-text-secondary);
    font-size: 14px;
}
/* 响应式调整 */
@media (max-width: 1400px) {
   .hero-text-all {
        flex-direction: column; /* 垂直堆叠 */
        align-items: center; /* 左右模块都居中 */
        padding: 40px 0;
    }
    /* 左侧文字占屏幕80% */
    .hero-text-container {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 3%;
        align-items: center;
    }
    .hero p.lead { 
      width: 100%;
      
      font-size: 18px;
    }
    /* 右侧卡片区域同样占屏幕80%，换行到下方 */
    .hero-cards {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    /* 移动端取消固定600px，自适应屏幕 */
    .hero-card-link,
    .hero-card {
        width: 100%;
        height: auto;
        min-height: 50%;
        margin: 0 auto;
    }
    /* 移动端关闭缩放，防止超出屏幕 */
    .hero-card:hover {
        transform: scale(1);
    }
}
/* 响应式调整 */
@media (max-width: 768px) {
  
    .hero h1 { 
      width: 100%;
      font-size: clamp(16px, 2vw, 20px);
      margin: 0 0 12px;
    }
    .product-card {
        max-width: 100%;
    }
    
    .product-image-container {
        height: 180px;
        width: 100%;
    }
    
    .product-content {
        padding: 16px;
    }
}

/* 优势卡片内部元素样式 */
.advantage-card > div:not(.advantage-image-container) { 
    padding: 20px;
}


.card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--c-primary);
}



.card h3 { 
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-primary);
}
/*首页博客图片*/
.blog-image{
  width: 30%;
  height: 20%;
}

.section { 
  width: 80%;
  padding: 64px 0;
  margin-bottom: 0px;
  border-radius: 4px;
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--c-primary);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 3px;
}

.section-title p {
  color: var(--c-text-secondary);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.kicker { 
  display: inline-flex; 
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-primary);
  background: var(--c-accent);
  padding: 8px 16px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--c-accent-dark);
}
.foot_all{
  /* 1. 整组页面居中，控制最大宽度，不再铺满屏幕 */
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 20px;
  /* 2. 不等宽三栏：左1fr 中间0.7fr 右1fr，中间红框自动变窄 */
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 1.8fr;
  gap: 24px;
  background-color: transparent;
}
@media screen and (max-width: 1000px) {
    .foot_all {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 12px;
    }
    .footer {
        padding: 16px 20px;
    }
}
footer {
  /* 灰色背景交给外层，不再放在foot_all */
  background-color: #e9e7e7;
}
.footer{
    text-align: left;
    padding: 20px 50px;
    border-radius: 8px;   
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer .brand {
  color: var(--c-primary);
}

.footer .brand strong {
  font-size: 24px;
}

.footer strong {
  display: block;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  color: var(--c-primary);
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 20px;
  
}

.footer li {
  margin-bottom: 12px;
}

.footer a {
  color: var(--c-text-secondary);
}

.footer a:hover {
  color: var(--c-accent);
}

.footer-bottom {
  background: var(--c-primary-dark);
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  color:rgba(0, 0, 0, 0.801);
}
.badge { 
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 0;
  background: var(--c-accent);
  color: var(--c-text-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--c-accent-dark);
}
table { 
  width: 100%; 
  border-collapse: collapse; 
  background: #fff; 
  border: 1px solid var(--c-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

th, td { 
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
}

th {
  background: var(--c-bg-light);
  font-weight: 600;
  color: var(--c-primary);
}

tr:last-child td { 
  border-bottom: none;
}

tr:hover {
  background: var(--c-bg-light);
}
form label { 
  display: block; 
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-primary);
  margin: 12px 0 6px;
}

input:focus,
textarea:focus {
  border-color: var(--c-accent); 
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}
input:focus,
textarea:focus {
  border-color: var(--c-primary); 
  box-shadow: 0 0 0 3px rgba(68, 68, 68, 0.1);
}

.alert { 
  padding: 12px 16px;
  border-radius: 0;
  font-size: 14px;
  margin-bottom: 16px;
  border-left: 4px solid;
}

.alert.ok { 
  background: #e6f7ff;
  color: #0050b3;
  border: 1px solid #91d5ff;
}

.alert.error {
  background: #fff2f0;
  color: #cf1322;
  border: 1px solid #ffccc7;
}
.subtle { 
  color: var(--c-text-secondary); 
  font-size: 16px;
  line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 900px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
 
  .nav {
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
  }
  
  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-p-btn{
    display: grid; 
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin: 0 auto;

  }
  .footer .cols {
    padding: 40px 0;
  }
}

.stats {
  background: transparent;
  color: var(--c-text-primary);
  padding: 0px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 38px;
  margin: 0 0 12px;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 1);
  color: var(--c-accent);
  
}

.stat-item p {
  color: var(--c-text-secondary);
  margin: 0;
  font-size: 18px;
}

.benefits-grid {   
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      text-align: center;
  }

  .benefit-item {
        padding: 30px 12px;   
  }

  .benefit-icon {
      width: 120px;
      height: 120px;
      object-fit: contain;
      margin: 0 auto 16px;
      display: block;
  }
  .benefit-title {
      font-size: clamp(16px, 1.5vw, 20px);
      color: #444444; 
      margin-bottom: 12px;
      line-height: 1.1;
      text-align: center;
  }

  .benefit-desc {
      color: #444444;
      line-height: 1.6;
      padding:0px 10px;
      margin: 0;
      font-size: clamp(13px, 1.5vw, 16px);
     
  }
  .contactUs{
    text-align: center; 
    margin: 30px ;
    font-size: 20px;
    font-weight: 500;
  }
  .contactUsButton{
    display: flex; 
    justify-content: center; 
    gap: 50px; 
    flex-wrap: wrap;
    margin-top: 50px;
  }

.valid-visit-counter {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #000;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.valid-visit-counter strong {
  margin-left: 5px;
  color:#000;
  font-variant-numeric: tabular-nums;
}
