/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-ink: #1A1A2E;
  --c-body: #5C5C72;
  --c-muted: #7A7A8C;
  --c-line: #EDECEB;
  --c-bg: #F8F7F4;
  --c-white: #FFFFFF;
  --c-primary: #2A4858;
  --c-primary-light: rgba(42, 72, 88, 0.08);
  --c-dark: #1C1C28;
  --c-ft-bg: #1C1C24;
  --c-ft-muted: #A0A0B0;
  --c-ft-line: rgba(255,255,255,0.08);
  --c-green: #52D9A6;
  --c-blue: #66A6F2;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 8px 24px rgba(42, 72, 88, 0.06);
  --shadow-lg: 0 24px 60px rgba(42, 72, 88, 0.12);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: 'Inter Tight', 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== Layout ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section-title { font-size: 36px; line-height: 1.22; color: var(--c-ink); margin-bottom: 4px; }
.section-sub { font-size: 16px; line-height: 1.5; color: var(--c-body); }
.kicker { font-size: 11px; font-weight: 600; color: var(--c-primary); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
.section-header-center { text-align: center; margin-bottom: 40px; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-weight: 600; border-radius: var(--radius); cursor: pointer; transition: var(--transition); border: none; }
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: #1F3A45; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(42,72,88,0.3); }
.btn-sm { height: 40px; padding: 0 20px; font-size: 14px; border-radius: var(--radius-sm); }
.btn-lg { height: 64px; padding: 0 40px; font-size: 18px; border-radius: var(--radius); box-shadow: 0 8px 24px rgba(42,72,88,0.25); }
.btn-pill {
  height: 40px; padding: 0 20px; font-size: 13px; font-weight: 600; color: var(--c-primary);
  background: var(--c-primary-light); border-radius: 100px;
}
.btn-pill:hover { background: rgba(42,72,88,0.15); }
.arr { font-size: 16px; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 100; height: 80px;
  background: var(--c-white); border-bottom: 1px solid var(--c-line);
}
.header-inner { display: flex; align-items: center; height: 80px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }
.logo-mark {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: var(--c-primary); color: #fff; border-radius: var(--radius-sm);
  font-family: 'Inter Tight', 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-weight: 800; font-size: 18px;
}
.logo-text { font-family: 'Inter Tight', 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-weight: 600; font-size: 20px; color: var(--c-ink); }

.nav { display: flex; align-items: center; gap: 40px; margin-left: auto; margin-right: auto; }
.nav-link { font-size: 15px; color: var(--c-body); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--c-primary); font-weight: 500; }

.nav-actions { flex-shrink: 0; margin-left: 40px; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: var(--transition); }

/* ===== Hero ===== */
.hero { background: var(--c-white); padding: 60px 0; }
.hero-container { display: flex; align-items: center; gap: 80px; min-height: 560px; }
.hero-left { flex: 0 0 600px; display: flex; flex-direction: column; gap: 40px; align-items: flex-start; }
.hero-title { font-size: 56px; line-height: 1.2; color: var(--c-ink); font-weight: 700; }
.hero-desc { font-size: 18px; line-height: 1.55; color: var(--c-body); max-width: 520px; }
.hero-right { flex: 1; display: flex; justify-content: center; }

/* ===== Hero Carousel ===== */
.hero-carousel {
  width: 540px; height: 480px; position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(42,72,88,0.12), 0 4px 12px rgba(42,72,88,0.08);
}
.carousel-track {
  display: flex; transition: transform 0.6s ease-in-out;
  height: 100%; width: 100%;
}
.carousel-slide {
  flex: 0 0 100%; height: 100%; display: block; position: relative;
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.carousel-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s;
}
.carousel-dot.active { background: #fff; width: 28px; border-radius: 5px; }

/* ===== Stats ===== */
.stats { padding: 90px 0; background: var(--c-bg); }
.stats-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 80px; margin-bottom: 56px; }
.stats-header-left { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.stats-header-right {
  width: 320px; background: transparent; border-radius: 12px; padding: 20px;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.stats-quote { font-size: 13px; font-weight: 500; color: var(--c-primary); line-height: 1.5; }
.stats-author { font-size: 11px; color: var(--c-muted); }

.stats-grid { display: flex; justify-content: space-between; gap: 20px; }
.stat-block { width: 240px; display: flex; flex-direction: column; gap: 6px; }
.stat-value { font-family: 'Inter Tight', 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-size: 56px; font-weight: 700; color: var(--c-primary); line-height: 1.07; }
.stat-unit { font-family: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-size: 20px; font-weight: 500; margin-left: 2px; vertical-align: super; }
.stat-label { font-size: 12px; font-weight: 500; color: var(--c-ink); }
.stat-sub { font-size: 12px; color: var(--c-muted); }

/* ===== Products ===== */
.products { padding: 80px 0; background: var(--c-white); }
.products-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.products-header-left { display: flex; flex-direction: column; gap: 0; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.product-card {
  background: var(--c-white); border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(42,72,88,0.06);
  overflow: hidden; transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-top {
  height: 200px; display: flex; align-items: center; justify-content: center; border-radius: 16px;
  margin: 28px 28px 0;
}
.product-top.gradient-teal { background: linear-gradient(135deg, #2A4858, #528C70); }
.product-top.gradient-amber { background: linear-gradient(135deg, #735C2E, #A67F4D); }
.product-top.gradient-blue { background: linear-gradient(135deg, #526B8C, #8099B8); }
.product-icon-wrap {
  width: 80px; height: 80px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15); border-radius: 16px;
}

.product-body { padding: 20px 28px 28px; }
.product-label { font-size: 11px; font-weight: 600; margin-bottom: 6px; }
.product-title { font-size: 18px; line-height: 1.39; color: var(--c-ink); margin-bottom: 8px; }
.product-desc { font-size: 14px; line-height: 1.57; color: var(--c-body); margin-bottom: 16px; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.product-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--c-ink); }
.feat-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ===== News ===== */
.news { padding: 67px 0 80px; background: var(--c-bg); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.news-card {
  background: var(--c-white); border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden; cursor: pointer; transition: var(--transition);
}
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.news-card-image { height: 160px; overflow: hidden; }
.news-card-image .placeholder-img {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: rgba(255,255,255,0.3);
}
.news-card-image .placeholder-img.c1 { background: linear-gradient(135deg, #2A4858, #528C70); }
.news-card-image .placeholder-img.c2 { background: linear-gradient(135deg, #4A6A8A, #6A8AAA); }
.news-card-image .placeholder-img.c3 { background: linear-gradient(135deg, #594719, #8A6A2E); }
.news-card-body { padding: 14px 20px 20px; }
.news-card-title { font-size: 14px; font-weight: 600; color: var(--c-ink); line-height: 1.43; margin-bottom: 6px; }
.news-card-date { font-size: 11px; color: var(--c-muted); }
.news-card-cat {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 10px; border-radius: 100px; font-size: 11px;
  background: rgba(42,72,88,0.85); color: #fff; backdrop-filter: blur(4px);
}
.news-card-image { position: relative; }

.news-more { text-align: center; margin-top: 32px; }
.news-more .btn-pill { height: 44px; padding: 0 32px; font-size: 14px; }

.news-empty { grid-column: 1/-1; text-align: center; padding: 40px; color: var(--c-muted); font-size: 15px; }

/* ===== Payment ===== */
.payment { padding: 80px 0; background: var(--c-primary); }
.payment-inner { display: flex; align-items: center; gap: 80px; }
.payment-left { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.payment-badge {
  display: inline-flex; align-items: center; gap: 6px;
  width: fit-content; padding: 5px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.12); color: #A8C8D8;
  font-size: 11px; font-weight: 600;
}
.bdot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-green); }
.payment-title { font-size: 32px; line-height: 1.25; color: #fff; }
.payment-desc { font-size: 15px; line-height: 1.73; color: #B8CCD8; max-width: 540px; }
.payment-feats { display: flex; gap: 32px; }
.payment-feat { display: flex; flex-direction: column; gap: 4px; }
.pfeat-val { font-family: 'Inter Tight', 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-size: 28px; font-weight: 700; color: #fff; line-height: 1.28; }
.pfeat-lab { font-size: 11px; color: #A8C8D8; }

.payment-right { flex: 0 0 540px; }
.payment-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 40px; display: flex; flex-direction: column; gap: 20px;
}
.pcard-row { display: flex; align-items: center; gap: 16px; }
.pcard-logo { width: 56px; height: 40px; border-radius: 8px; flex-shrink: 0; }
.pcard-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pcard-title { font-size: 15px; font-weight: 600; color: #fff; }
.pcard-sub { font-size: 11px; color: #A8C8D8; }
.pcard-badge {
  padding: 3px 10px; border-radius: 4px; font-size: 10px; font-weight: 600;
  background: rgba(82,217,166,0.2);
}
.pcard-features { display: flex; flex-direction: column; gap: 6px; padding-left: 0; }
.pcard-feat { font-size: 13px; color: #A8C8D8; display: flex; align-items: center; gap: 8px; }
.pcf-check { color: var(--c-green); font-weight: 700; font-size: 14px; }
.pcard-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 0; }

/* ===== Cloud ===== */
.cloud { padding: 80px 0; background: var(--c-bg); }
.cloud-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.cloud-header-left { display: flex; flex-direction: column; gap: 0; }
.cloud-badge {
  padding: 12px 20px; border-radius: 12px; border: 1px solid rgba(180,150,80,0.4);
  background: rgba(242,217,128,0.2); text-align: center;
}
.cloud-badge-row { display: flex; align-items: center; gap: 6px; justify-content: center; font-size: 10px; font-weight: 600; color: #7A5A0E; }
.cdot { width: 8px; height: 8px; border-radius: 4px; background: #A6761E; }
.cloud-badge-sub { font-size: 10px; color: #5C4A20; margin-top: 4px; }

.cloud-bento { display: flex; flex-direction: column; gap: 20px; }
.cloud-top-row { display: grid; grid-template-columns: 620px 1fr 1fr; gap: 20px; }

.cloud-card { border-radius: var(--radius-lg); padding: 28px 32px; display: flex; flex-direction: column; gap: 12px; }
.cloud-card-main { background: var(--c-white); box-shadow: 0 4px 16px rgba(42,72,88,0.06); }
.cloud-card-dark { background: var(--c-primary); }
.cloud-card-light { background: var(--c-white); border: 1px solid var(--c-line); }

.cloud-card-h { display: flex; align-items: center; gap: 12px; }
.cloud-card-num { font-family: 'Inter Tight', 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-size: 24px; font-weight: 700; color: var(--c-primary); line-height: 1.33; }
.cloud-card-kicker { font-size: 10px; font-weight: 600; color: var(--c-primary); letter-spacing: 0.04em; }
.cloud-card-title { font-size: 18px; color: var(--c-ink); line-height: 1.39; }
.cloud-card-desc { font-size: 14px; color: var(--c-body); line-height: 1.57; }
.cloud-card-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.cloud-card-tags span {
  font-size: 10px; font-weight: 500; color: var(--c-primary);
  background: var(--c-primary-light); padding: 3px 8px; border-radius: 6px;
}
.cloud-metric { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.cm-val { font-family: 'Inter Tight', 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-size: 24px; font-weight: 700; }
.cm-lab { font-size: 12px; color: var(--c-muted); }

.cloud-bottom-card {
  display: flex; align-items: center; gap: 24px;
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: 24px 32px;
}
.cloud-bot-left { flex: 0 0 480px; display: flex; flex-direction: column; gap: 6px; }
.cloud-bot-title { font-size: 22px; color: var(--c-ink); line-height: 1.36; }
.cloud-bot-desc { font-size: 13px; color: var(--c-body); line-height: 1.54; }
.cloud-bot-right { flex: 1; display: flex; gap: 24px; }
.cloud-metric-block { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cmb-val { font-family: 'Inter Tight', 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-size: 20px; font-weight: 700; color: var(--c-primary); }
.cmb-lab { font-size: 11px; color: var(--c-muted); }

/* ===== Cases ===== */
.cases { padding: 80px 0; background: var(--c-white); }
.cases-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.cases-header-left { display: flex; flex-direction: column; gap: 0; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.case-card {
  height: 100px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg1), var(--bg2));
  border-radius: 16px; cursor: pointer; transition: var(--transition);
}
.case-card:hover { transform: translateY(-2px); filter: brightness(1.1); }
.case-card span {
  font-family: 'Inter Tight', 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-size: 18px; font-weight: 700;
  color: #fff; letter-spacing: -0.01em;
}

/* ===== CTA ===== */
.cta { padding: 70px 0; background: var(--c-bg); text-align: center; }
.cta .container { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.cta-title { font-size: 48px; font-weight: 700; color: var(--c-ink); line-height: 1.16; }
.cta-sub { font-size: 17px; color: var(--c-body); line-height: 1.65; max-width: 400px; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-outline-light { height: 64px; padding: 0 40px; font-size: 18px; border-radius: var(--radius); border: 2px solid var(--c-primary); color: var(--c-primary); background: transparent; box-shadow: none; }
.btn-outline-light:hover { background: var(--c-primary); color: #fff; }

/* ===== Footer ===== */
.footer { background: var(--c-ft-bg); padding: 64px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 60px; }
.footer-left { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-img { height: 40px; width: auto; }
.footer-logo {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--c-ink); border-radius: 8px;
  font-family: 'Inter Tight', 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-weight: 800; font-size: 18px;
}
.footer-name { font-family: 'Inter Tight', 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif; font-weight: 600; font-size: 20px; color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-row { display: flex; align-items: flex-start; gap: 10px; }
.footer-row span { font-size: 14px; color: var(--c-ft-muted); line-height: 1.57; }
.footer-row span.phone { font-size: 16px; font-weight: 600; color: #D0D0DA; }
.footer-divider { height: 1px; background: var(--c-ft-line); width: 100%; }
.footer-legal { display: flex; flex-direction: column; gap: 4px; }
.footer-legal p { font-size: 12px; color: #70707A; }

.footer-right { flex: 0 0 500px; display: flex; flex-direction: column; gap: 16px; }
.footer-qr-title { font-size: 16px; font-weight: 600; color: #fff; }
.footer-qr-sub { font-size: 12px; color: #70707A; }
.footer-qr-row { display: flex; gap: 20px; }
.qr-item {
  width: 220px; padding: 20px; border-radius: 16px;
  background: rgba(255,255,255,0.05); text-align: center;
}
.qr-placeholder {
  width: 100%; max-width: 200px; height: auto; margin: 0 auto 12px; display: block;
  border-radius: 14px; background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.qr-placeholder img { width: 100%; height: auto; display: block; border-radius: 8px; }
.qr-name { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.qr-role { font-size: 11px; color: var(--c-ft-muted); }

/* ===== Admin Link (bottom corner) ===== */
.admin-link {
  position: fixed; bottom: 20px; right: 20px; z-index: 200;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--c-primary); color: #fff; border-radius: 50%;
  box-shadow: 0 4px 16px rgba(42,72,88,0.3); font-size: 20px;
  transition: var(--transition); text-decoration: none;
}
.admin-link:hover { transform: scale(1.1); }

/* ===== News List Page ===== */
.news-list-hero {
  padding: 60px 0 40px; background: var(--c-white);
}
.news-list-hero-inner {
  display: flex; flex-direction: column; gap: 8px;
}
.news-list-back {
  font-size: 14px; color: var(--c-primary); display: inline-flex; align-items: center; gap: 4px;
  width: fit-content; margin-bottom: 12px; text-decoration: none; transition: var(--transition);
}
.news-list-back:hover { opacity: 0.7; }
.news-list-title {
  font-family: 'Inter Tight', 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  font-size: 40px; font-weight: 700; color: var(--c-ink); line-height: 1.15;
}
.news-list-sub { font-size: 16px; color: var(--c-body); }

.news-list-section { padding: 10px 0 80px; background: var(--c-white); }
.news-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.news-list-card {
  background: var(--c-bg); border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.news-list-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.news-list-card-image { height: 180px; overflow: hidden; }
.news-list-card-image .placeholder-img {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: rgba(255,255,255,0.3);
}
.news-list-card-image .placeholder-img.c1 { background: linear-gradient(135deg, #2A4858, #528C70); }
.news-list-card-image .placeholder-img.c2 { background: linear-gradient(135deg, #4A6A8A, #6A8AAA); }
.news-list-card-image .placeholder-img.c3 { background: linear-gradient(135deg, #594719, #8A6A2E); }
.news-list-card-body { padding: 18px 24px 24px; }
.news-list-card-title { font-size: 16px; font-weight: 600; color: var(--c-ink); line-height: 1.44; margin-bottom: 8px; }
.news-list-card-summary {
  font-size: 13px; color: var(--c-body); line-height: 1.54; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-list-card-date { font-size: 12px; color: var(--c-muted); }
.news-list-card-cat {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 100px; font-size: 12px;
  background: rgba(42,72,88,0.85); color: #fff; backdrop-filter: blur(4px);
}
.news-list-card-image { position: relative; }

/* Pagination */
.news-list-pagination { margin-top: 48px; text-align: center; }
.pagination-inner { display: inline-flex; align-items: center; gap: 8px; }
.page-btn, .page-num {
  height: 40px; padding: 0 18px; border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  background: var(--c-white); color: var(--c-body); font-size: 14px; cursor: pointer;
  transition: var(--transition); font-family: inherit; display: inline-flex; align-items: center;
}
.page-btn:hover:not(:disabled), .page-num:hover:not(.active) { border-color: var(--c-primary); color: var(--c-primary); }
.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.page-num.active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

@media (max-width: 1024px) {
  .news-list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .news-list-title { font-size: 28px; }
  .news-list-grid { grid-template-columns: 1fr; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-container { flex-direction: column; gap: 40px; }
  .hero-left { flex: 0 0 auto; width: 100%; }
  .hero-title { font-size: 40px; }
  .hero-carousel { width: 100%; max-width: 540px; height: 360px; }
  .stats-grid { flex-wrap: wrap; gap: 32px; }
  .stat-block { width: calc(50% - 16px); }
  .products-grid { grid-template-columns: 1fr; }
  .product-top { margin: 20px 20px 0; height: 160px; }
  .news-grid { grid-template-columns: 1fr; }
  .payment-inner { flex-direction: column; }
  .payment-right { flex: 0 0 auto; width: 100%; }
  .cloud-top-row { grid-template-columns: 1fr; }
  .cloud-bottom-card { flex-direction: column; }
  .cloud-bot-left { flex: 0 0 auto; width: 100%; }
  .cloud-bot-right { flex-wrap: wrap; }
  .cloud-metric-block { flex: 0 0 calc(50% - 12px); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
  .footer-right { flex: 0 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  .nav, .nav-actions { display: none; }
  .mobile-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0;
    background: var(--c-white); padding: 20px; gap: 16px; border-bottom: 1px solid var(--c-line);
  }
  .section-title { font-size: 28px; }
  .hero-title { font-size: 32px; }
  .hero-carousel { height: 280px; }
  .stats-header { flex-direction: column; gap: 20px; }
  .stats-header-right { width: 100%; }
  .stats-grid { flex-direction: column; gap: 24px; }
  .stat-block { width: 100%; }
  .stat-value { font-size: 40px; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .payment-feats { flex-wrap: wrap; gap: 20px; }
  .payment-title { font-size: 24px; }
  .cases-grid { grid-template-columns: 1fr; }
  .cta-title { font-size: 32px; }
  .footer-qr-row { flex-direction: column; }
  .qr-item { width: 100%; }
}
