@charset "utf-8";

:root {
  --primary: #5B3FF7;         
  --primary-dark: #0F1240;    
  --primary-2: #7A5CFF;       
  --accent: #C7A4FF;          
  --accent-2: #FF8FE0;        
  --text: #0F1240;            
  --text-2: #3D3970;
  --text-3: #8A87A8;
  --border: #E6E3F5;          
  --bg: #fff;
  --bg-2: #FAF9FF;            
  --bg-3: #F3F0FF;            
  --grad-1: linear-gradient(135deg, #5B3FF7 0%, #C7A4FF 100%);
  --grad-2: linear-gradient(135deg, #0F1240 0%, #5B3FF7 100%);
  --max: 1180px;
  --font: -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }


.top-bar {
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
  background: var(--bg-3);
}
.top-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a:hover { color: var(--primary); }

header.site {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--grad-2);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(91,63,247,.35);
}
nav.main {
  margin-left: auto;
  display: flex;
  gap: 32px;
}
nav.main a {
  font-size: 15px;
  padding: 26px 0;
  position: relative;
  color: var(--text-2);
  transition: color .2s;
}
nav.main a:hover, nav.main a.active { color: var(--primary); }
nav.main a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--primary);
}
.cta-btn {
  margin-left: 24px;
  padding: 9px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}
.cta-btn:hover { background: var(--primary-dark); color: #fff; }


footer.site {
  background: var(--primary-dark);
  background-image: radial-gradient(ellipse at top right, rgba(91,63,247,.35) 0%, transparent 60%);
  color: #C7B8FF;
  padding: 56px 0 24px;
 
}
.foot-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 0.7fr 0.7fr 0.7fr  1.3fr;
  gap: 48px;
}
.foot-grid h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 500;
}
.foot-grid li { list-style: none; padding: 4px 0; font-size: 13px; }
.foot-grid a:hover { color: #fff; }
.foot-brand { font-size: 16px; color: #fff; margin-bottom: 12px; font-weight: 500; }
.foot-bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(199,164,255,.2);
  font-size: 13px;
  color: #8A87A8;
     text-align: center;

}


.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 72px 0; }
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head .label {
  display: inline-block;
  font-size: 12px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 500;
}
.section-head h2 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.5px;
      margin-bottom: 12px;
}
.section-head p {
  color: var(--text-2);
  margin-top: 12px;
  font-size: 15px;
      max-width: 600px;
	      margin: 0 auto;
}


.btn {
  display: inline-block;
  padding: 11px 24px;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 4px;
  font-size: 14px;
  transition: all .2s;
}
.btn:hover { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(91,63,247,.25); }
.btn-primary { background: var(--grad-1); color: #fff; border: none; }
.btn-primary:hover { background: var(--primary); box-shadow: 0 6px 20px rgba(91,63,247,.4); }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }


.breadcrumb {
  background: var(--bg-3);
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
}
.breadcrumb .container { display: flex; gap: 4px; align-items: center; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: #c0c0c0; }
.breadcrumb .current { color: var(--text); }


.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}
.pagination a, .pagination span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  color: var(--text-2);
}
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); }


input, textarea, select {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  width: 100%;
  transition: border-color .2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--primary); }
textarea { min-height: 120px; resize: vertical; }
label { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 6px; }



.hero {
  background: linear-gradient(135deg, #F3F0FF 0%, #fff 60%, #FAF9FF 100%);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(199,164,255,.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--primary); }
.hero p.lead {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 12px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 540px;
}
.hero-stat .num {
  font-size: 32px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -1px;
}
.hero-stat .label { font-size: 13px; color: var(--text-3); }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual svg { width: 80%; height: 80%; }

.bg-light { background: var(--bg-2); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all .2s;
}
.cat-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26,77,143,.08);
}
.cat-card .icon {
  width: 48px; height: 48px;
  background: rgba(26,77,143,.08);
  color: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 500;
  margin-bottom: 16px;
}
.cat-card h3 { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.cat-card p { font-size: 13px; color: var(--text-3); }
.cat-card .more {
  display: inline-block; margin-top: 12px;
  font-size: 13px; color: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all .2s;
}
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.product-thumb {
  aspect-ratio: 4/3;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.product-body { padding: 20px; }
.product-body h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.product-body p { font-size: 13px; color: var(--text-2); line-height: 1.6; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3;  -webkit-box-orient: vertical;}
.product-body .meta {
  display: flex; gap: 8px; margin-top: 12px;
  font-size: 12px; color: var(--text-3);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.solution-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  align-items: center;
  transition: all .2s;
}
.solution-card:hover { border-color: var(--primary); }
.solution-card .icon-block {
  aspect-ratio: 1/1;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 500;
}
.solution-card h3 { font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.solution-card p { font-size: 14px; color: var(--text-2); margin-bottom: 12px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 5;  -webkit-box-orient: vertical;}
.solution-card .more { font-size: 13px; color: var(--primary); }

.news-list { display: grid; gap: 16px; }
.news-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.news-date {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
}
.news-date .d { font-size: 28px; color: var(--text); display: block; line-height: 1; }
.news-item h4 { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.news-item p { font-size: 13px; color: var(--text-2); overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2;  -webkit-box-orient: vertical;}
.news-item:hover h4 { color: var(--primary); }

.cta-band {
  background: var(--primary);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { font-size: 28px; font-weight: 500; margin-bottom: 12px; }
.cta-band p { font-size: 15px; opacity: .9; margin-bottom: 24px; }

@media (max-width: 900px) {
  .hero { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 30px; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { grid-template-columns: 100px 1fr; gap: 16px; padding: 20px; }
  .news-item { grid-template-columns: 70px 1fr; }
  .news-item .btn { grid-column: 1/-1; }
}

.page-hero {
  background: linear-gradient(135deg, #FAF9FF 0%, #fff 100%);
  padding: 64px 0 48px;
  text-align: center;
}
.page-hero h1 { font-size: 36px; font-weight: 500; letter-spacing: -0.5px; margin-bottom: 12px; }
.page-hero p { color: var(--text-2); max-width: 600px; margin: 0 auto; }

.layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  margin-top: 40px;
}
.sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}
.cat-filter {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.cat-filter h3 {
  font-size: 14px;
  font-weight: 500;
  padding: 16px 20px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.cat-filter a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: all .15s;
}
.cat-filter a:last-child { border-bottom: 0; }
.cat-filter a:hover, .cat-filter a.active {
  background: rgba(26,77,143,.06);
  color: var(--primary);
  font-weight: 500;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-3);
      font-weight: bold;
}
.toolbar select {
  width: auto;
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all .2s;
}
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); transform: translateY(-2px); }
.product-thumb {
  aspect-ratio: 4/3;
  background: unset;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.product-thumb .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-size: 11px; padding: 2px 8px; border-radius: 3px;
}
.product-body { padding: 20px; }
.product-body h3 { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.product-body p { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 12px; }
.product-body .meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-3);
}
.product-body .meta span {
  padding: 2px 8px;
  background: var(--bg-3);
  border-radius: 3px;
}

@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 26px; }
}

.pagination a.page-num-current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination span:hover {
    border-color: var(--primary);
    color: var(--primary);
}


.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 0;
}
.gallery {
  /*aspect-ratio: 1/1;*/
  background: var(--bg-3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery .main-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  font-size: 14px;
}
.thumbs { display: flex; gap: 8px; margin-top: 12px; }
.thumb {
  width: 64px; height: 64px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
}
.thumb.active { border-color: var(--primary); }

.product-info h1 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.product-info .subtitle {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 24px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;

  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.price-row .price {
  font-size: 32px;
  color: var(--primary);
  font-weight: 500;
}
.price-row .label { font-size: 13px; color: var(--text-3); }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.tag-chip {
  font-size: 12px; padding: 4px 12px;
  background: rgba(26,77,143,.06);
  color: var(--primary);
  border-radius: 3px;
}
.cta-row { display: flex; gap: 12px; }
.cta-row .btn-primary { flex: 1; padding: 14px 24px; text-align: center; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-top: 16px;
  font-size: 14px;
}
.feature-list li {
  list-style: none;
  padding-left: 24px;
  position: relative;
}
.feature-list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--primary);
  font-weight: 500;
}

.tab-section { padding: 60px 0; background: var(--bg-2); }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.tab {
  padding: 12px 24px;
  font-size: 15px;
  color: var(--text-2);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab.active { color: var(--primary); border-color: var(--primary); font-weight: 500; }

.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}
.spec-table th {
  background: var(--bg-3);
  font-weight: 500;
  width: 30%;
}

.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 12px; padding: 20px 24px; }
.faq-q { font-weight: 500; margin-bottom: 8px; }
.faq-a { color: var(--text-2); font-size: 14px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.related-card { padding: 20px; background: #fff; border: 1px solid var(--border); border-radius: 8px; }
.related-card .img { /*aspect-ratio: 1/1;*/ background: var(--bg-3); border-radius: 4px; margin-bottom: 12px; }
.related-card h4 { font-size: 14px; font-weight: 500; }

.article-hero { padding: 56px 0 20px; border-bottom: 1px solid var(--border); }
.article-hero .meta { font-size: 13px; color: var(--text-3); margin-bottom: 12px; }
.article-hero .meta .badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 10px;
  background: rgba(26,77,143,.08);
  /*color: var(--primary);*/
  border-radius: 3px;
  margin-right: 12px;
}
.article-hero h1 { font-size: 32px; font-weight: 500; letter-spacing: -0.5px; line-height: 1.4; }
.article-hero .lead { color: var(--text-2); margin-top: 16px; font-size: 16px; }

.article-body {
     max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
}
.article-body p { margin-bottom: 20px; }
.article-body h2 { font-size: 22px; font-weight: 500; margin: 40px 0 16px; }
.article-body h3 { font-size: 18px; font-weight: 500; margin: 32px 0 12px; }
.article-body ul, .article-body ol { margin: 16px 0 24px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.article-body th, .article-body td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.article-body th { background: var(--bg-3); font-weight: 500; }
.article-body blockquote {
  border-left: 3px solid var(--primary);
  padding: 12px 20px;
  background: var(--bg-2);
  margin: 20px 0;
  color: var(--text-2);
}
.article-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-3);
}
.tag-row { display: flex; gap: 8px; }
.tag-row span {
  font-size: 12px;
  padding: 2px 10px;
  background: var(--bg-3);
  border-radius: 3px;
  color: var(--text-2);
}

.related-news { background: var(--bg-2); padding: 60px 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  transition: all .2s;
}
.related-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.related-card .d { font-size: 12px; color: var(--text-3); }
.related-card h4 { font-size: 15px; font-weight: 500; margin: 8px 0 4px; }

@media (max-width: 700px) {
  .article-hero h1 { font-size: 22px; }
  .article-body { padding: 32px 20px; font-size: 15px; }
  .related-grid { grid-template-columns: 1fr; }
}

.page-hero {
  background: linear-gradient(135deg, #FAF9FF 0%, #fff 100%);
  padding: 64px 0 48px;
  text-align: center;
}
.page-hero h1 { font-size: 36px; font-weight: 500; letter-spacing: -0.5px; margin-bottom: 12px; }
.page-hero p { color: var(--text-2); max-width: 600px; margin: 0 auto; }

.cat-tabs {
  display: flex; gap: 8px; margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.cat-tab {
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-2);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.cat-tab.active { color: var(--primary); border-color: var(--primary); font-weight: 500; }

.news-list { display: grid; gap: 0; }
.news-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: all .2s;
}
.news-item:hover { background: var(--bg-2); padding: 24px 16px; border-radius: 8px; }
.news-date {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
}
.news-date .d { font-size: 32px; color: var(--text); display: block; line-height: 1; font-weight: 500; }
.news-date .m { display: block; margin-top: 4px; }
.news-item .badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  background: rgba(26,77,143,.08);
  color: var(--primary);
  border-radius: 3px;
  margin-bottom: 8px;
}
.news-item h4 { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.news-item p { font-size: 13px; color: var(--text-2); }

@media (max-width: 700px) {
  .news-item { grid-template-columns: 70px 1fr; }
  .news-item .btn { grid-column: 1/-1; }
  .page-hero h1 { font-size: 26px; }
}





@media (max-width: 900px) {
  .product-hero { grid-template-columns: 1fr; gap: 24px; }
  .product-info h1 { font-size: 24px; }
  .feature-list { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  nav.main { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 48px 0; }
  .section-head h2 { font-size: 24px; }
  .section-head p {
    color: var(--text-2);
    margin-top: 12px;
    font-size: 15px;
    max-width: unset;
}
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .nav-inner { height: 60px; }
  .logo { font-size: 16px; }
    
}



.related-grid  p{
overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3;  -webkit-box-orient: vertical;
}

.page-hero {
  background: linear-gradient(135deg, #FAF9FF 0%, #fff 100%);
  padding: 64px 0 48px;
  text-align: center;
}
.page-hero h1 { font-size: 36px; font-weight: 500; letter-spacing: -0.5px; margin-bottom: 12px; }
.page-hero p { color: var(--text-2); max-width: 600px; margin: 0 auto; }

.sol-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
.sol-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all .2s;
}
.sol-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.sol-banner {
  height: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, #0F1240 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 8px;
}
.sol-body { padding: 28px; }
.sol-body h3 { font-size: 20px; font-weight: 500; margin-bottom: 12px; }
.sol-body p { color: var(--text-2); font-size: 14px; margin-bottom: 16px; }
.sol-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-3);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.sol-meta span::before { content: "•"; color: var(--primary); margin-right: 6px; }
.more-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--primary);
}

@media (max-width: 900px) {
  .sol-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 26px; }
}

.cat-card .icon img {
    width: 35px;
    height: 35px;

}

 @media (max-width: 767px) {
.topbarinner{
display: none;

}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    justify-content: space-between;
}

.cta-btn {
    margin-left: unset;
    padding: 9px 18px;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}

}

