/* ============================================================
   新镜界医疗官网 - 全局样式
   设计：医疗蓝 + 白，专业可信，移动优先响应式
   ============================================================ */
:root {
  --primary: #0e5fa8;
  --primary-dark: #0a4a85;
  --primary-light: #e8f1fa;
  --accent: #18a06b;
  --accent-light: #e6f7f0;
  --text: #333;
  --text-light: #666;
  --text-lighter: #999;
  --border: #e5e5e5;
  --bg: #f7f9fb;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 4px 16px rgba(14, 95, 168, 0.08);
  --shadow-lg: 0 8px 30px rgba(14, 95, 168, 0.15);
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.35; font-weight: 600; }
h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 19px; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--primary); color: #fff;
  padding: 8px 16px; z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ============ 顶部条 ============ */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 36px; }
.topbar a { color: rgba(255,255,255,.85); margin-left: 16px; }
.topbar a:hover { color: #fff; }
.topbar .links { display: flex; align-items: center; }
.topbar .welcome.ticker { overflow: hidden; white-space: nowrap; flex: 1; min-width: 0; margin-right: 16px; }
.ticker-track { display: inline-block; white-space: nowrap; animation: tickerScroll 22s linear infinite; }
.ticker-track span { margin: 0 14px; }
.ticker-track .dot { margin: 0; color: rgba(255,255,255,.45); }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============ 头部 ============ */
.header { background: var(--white); box-shadow: 0 1px 8px rgba(0,0,0,.05); position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 40px; width: auto; }
.logo-text { font-size: 17px; font-weight: 700; color: var(--primary-dark); line-height: 1.3; }
.logo-text small { display: block; font-size: 12px; font-weight: 400; color: var(--text-lighter); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: block; padding: 10px 16px; color: var(--text); font-size: 15px;
  border-radius: var(--radius); font-weight: 500;
}
.nav a:hover, .nav a.active { color: var(--primary); background: var(--primary-light); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--primary-dark); margin: 5px auto; border-radius: 2px; transition: .3s; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .phone { text-align: right; }
.header-cta .phone small { display: block; font-size: 12px; color: var(--text-lighter); }
.header-cta .phone strong { font-size: 19px; color: var(--primary); letter-spacing: .5px; }

/* ============ 页头横幅 ============ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2a86d0 100%);
  color: #fff; padding: 52px 0 46px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(255,255,255,.06);
}
.page-hero h1, .page-hero .hero-title { font-size: 32px; margin-bottom: 8px; position: relative; z-index: 1; font-weight: 600; line-height: 1.35; }
.page-hero p { color: rgba(255,255,255,.85); position: relative; z-index: 1; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 14px; position: relative; z-index: 1; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 6px; }

/* ============ 通用区块 ============ */
.section { padding: 56px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title .en { display: block; font-size: 13px; letter-spacing: 4px; color: var(--primary); text-transform: uppercase; margin-bottom: 6px; }
.section-title h2 { color: var(--primary-dark); }
.section-title p { color: var(--text-light); margin-top: 10px; font-size: 15px; }
.intro-text { max-width: 920px; margin: 0 auto 34px; font-size: 15px; line-height: 1.95; color: var(--text-light); }

/* ============ 按钮 ============ */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: 50px; font-size: 15px;
  background: var(--primary); color: #fff; border: none; cursor: pointer; font-weight: 500;
  transition: all .25s;
}
.btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent); }
.btn-accent:hover { background: #0f8a5b; color: #fff; }
.btn-lg { padding: 14px 36px; font-size: 16px; }

/* ============ 首页 Hero ============ */
.hero {
  background: linear-gradient(135deg, #0a4a85 0%, #0e5fa8 55%, #2a86d0 100%);
  color: #fff; padding: 90px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; left: -120px; bottom: -160px; width: 420px; height: 420px;
  border-radius: 50%; background: rgba(255,255,255,.05);
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  padding: 5px 14px; border-radius: 50px; font-size: 13px; margin-bottom: 18px; letter-spacing: 1px;
}
.hero h1 { font-size: 40px; line-height: 1.3; margin-bottom: 16px; }
.hero h1 span { color: #8fd3ff; }
.hero p { font-size: 17px; color: rgba(255,255,255,.88); max-width: 540px; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 64px; margin-top: 40px; }
.hero-stats .num { font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.hero-stats .label { font-size: 13px; color: rgba(255,255,255,.75); }
.hero-img { text-align: center; }
.hero-img img { border-radius: 16px; box-shadow: var(--shadow-lg); max-height: 420px; object-fit: cover; width: 100%; }

/* ============ 首页信任条 ============ */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 24px 20px; }
.trust-item .ico { font-size: 30px; }
.trust-item h3 { font-size: 15px; color: var(--primary-dark); }
.trust-item p { font-size: 13px; color: var(--text-light); }

/* ============ 首页产品 ============ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  transition: all .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card .thumb { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bg); }
.product-card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 14px; background: var(--white); transition: transform .4s; }
.product-card:hover .thumb img { transform: scale(1.05); }
.product-card .body { padding: 18px 20px 22px; }
.product-card .body h3 { font-size: 17px; color: var(--primary-dark); margin-bottom: 8px; }
.product-card .body p { font-size: 14px; color: var(--text-light); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card .more { display: inline-block; margin-top: 12px; font-size: 14px; color: var(--primary); font-weight: 500; }
.product-card .more:hover { color: var(--primary-dark); }

/* ============ 关于区 ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-grid .img-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-grid .img-box img { width: 100%; }
.about-text h2 { color: var(--primary-dark); margin-bottom: 16px; }
.about-text p { color: var(--text-light); margin-bottom: 14px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 24px; }
.about-points li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); }
.about-points li::before { content: "✓"; color: var(--accent); font-weight: 700; }

/* ============ 新闻 ============ */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.news-card {
  display: flex; gap: 18px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; transition: all .3s;
}
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.news-card .date {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: var(--radius);
  background: var(--primary-light); color: var(--primary); text-align: center; padding-top: 9px;
}
.news-card .date b { display: block; font-size: 22px; line-height: 1.1; }
.news-card .date span { font-size: 12px; }
.news-card .body h3 { font-size: 16px; color: var(--text); margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .body h3:hover { color: var(--primary); }
.news-card .body p { font-size: 14px; color: var(--text-light); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============ CTA 区 ============ */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #0f8a5b 100%);
  color: #fff; padding: 50px 0; text-align: center;
}
.cta-section h2 { font-size: 28px; margin-bottom: 10px; }
.cta-section p { opacity: .9; margin-bottom: 24px; }
.cta-section .btn { background: #fff; color: var(--accent); }
.cta-section .btn:hover { background: var(--primary-light); color: var(--accent); }

/* ============ 联系区 ============ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; transition: all .3s;
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.contact-card .ico { font-size: 34px; margin-bottom: 12px; }
.contact-card h3 { color: var(--primary-dark); margin-bottom: 8px; font-size: 17px; }
.contact-card p { color: var(--text-light); font-size: 15px; }

/* ============ FAQ ============ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 16px 20px; font-weight: 500; font-size: 16px; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--primary); font-weight: 400; transition: transform .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--primary); }
.faq-item .answer { padding: 0 20px 18px; color: var(--text-light); font-size: 15px; }

/* ============ 产品详情页 ============ */
.prod-top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.prod-gallery .main-img { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); aspect-ratio: 4/3; }
.prod-gallery .main-img img { width: 100%; height: 100%; object-fit: contain; }
.prod-info h1 { color: var(--primary-dark); margin-bottom: 14px; font-size: 26px; }
.prod-info .lead { color: var(--text-light); margin-bottom: 20px; font-size: 15px; border-left: 3px solid var(--primary); padding-left: 14px; }
.prod-meta { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.prod-meta li { display: flex; padding: 10px 16px; font-size: 14px; }
.prod-meta li:nth-child(odd) { background: var(--bg); }
.prod-meta li b { width: 110px; flex-shrink: 0; color: var(--primary-dark); font-weight: 600; }
.prod-meta li span { color: var(--text); }
.prod-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.prod-cta .tel { font-size: 18px; color: var(--primary); font-weight: 700; }

.prod-section { margin-top: 48px; }
.prod-section h2 {
  font-size: 20px; color: var(--primary-dark); padding-left: 14px; border-left: 4px solid var(--primary);
  margin-bottom: 18px; padding-top: 2px;
}
.prod-section .content { color: var(--text-light); }
.prod-section .content p { margin-bottom: 12px; }
.prod-section .content table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 14px; }
.prod-section .content th, .prod-section .content td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.prod-section .content th { background: var(--primary-light); color: var(--primary-dark); font-weight: 600; }
.spec-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.spec-list li { background: var(--bg); border-radius: 6px; padding: 10px 14px; font-size: 14px; color: var(--text); }

/* ============ 新闻列表 ============ */
.news-list-ul { display: flex; flex-direction: column; gap: 20px; }
.news-list-ul li {
  display: flex; gap: 20px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all .3s;
}
.news-list-ul li:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.news-list-ul .thumb { width: 220px; flex-shrink: 0; background: var(--white); aspect-ratio: 4/3; }
.news-list-ul .thumb img { width: 100%; height: 100%; object-fit: contain; background: var(--white); }
.news-list-ul .txt { padding: 18px 22px 18px 0; flex: 1; }
.news-list-ul .txt h3 { font-size: 18px; margin-bottom: 8px; }
.news-list-ul .txt h3 a { color: var(--text); }
.news-list-ul .txt h3 a:hover { color: var(--primary); }
.news-list-ul .txt p { font-size: 14px; color: var(--text-light); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-list-ul .meta { font-size: 13px; color: var(--text-lighter); margin-bottom: 8px; }

/* ============ 文章页 ============ */
.article { max-width: 860px; margin: 0 auto; }
.article header { text-align: center; margin-bottom: 30px; }
.article header h1 { color: var(--primary-dark); font-size: 26px; }
.article .meta { color: var(--text-lighter); font-size: 14px; margin-top: 12px; }
.article .content { color: var(--text-light); }
.article .content p { margin-bottom: 16px; }
.article .content img { margin: 16px auto; border-radius: var(--radius); }
.article .content h2 { font-size: 20px; color: var(--primary-dark); margin: 28px 0 14px; padding-left: 12px; border-left: 4px solid var(--primary); }
.article .content h3 { font-size: 17px; color: var(--primary-dark); margin: 20px 0 10px; }
.article .content ul, .article .content ol { margin: 0 0 16px; padding-left: 24px; }
.article .content li { margin-bottom: 8px; }
.article .content table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14px; }
.article .content th, .article .content td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.article .content th { background: var(--primary-light); color: var(--primary-dark); font-weight: 600; }
.article .content blockquote { margin: 14px 0; padding: 12px 16px; background: var(--bg); border-left: 3px solid var(--primary); color: var(--text); }
.article .content a { color: var(--primary); text-decoration: underline; }

/* ============ 联系我们页 ============ */
.contact-main { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.contact-info-card li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--border); font-size: 15px; }
.contact-info-card li:last-child { border-bottom: none; }
.contact-info-card .ico { font-size: 22px; flex-shrink: 0; }
.contact-info-card b { color: var(--primary-dark); display: block; font-size: 14px; }
.contact-info-card span { color: var(--text-light); }
.qr-box { text-align: center; background: var(--bg); border-radius: var(--radius); padding: 24px; }
.qr-box img { width: 160px; margin: 0 auto 12px; border-radius: 8px; }
.qr-box p { font-size: 14px; color: var(--text-light); }

/* ============ 地图页 / 通用列表 ============ */
.sitemap-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.sitemap-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.sitemap-block h3 { color: var(--primary-dark); margin-bottom: 14px; font-size: 17px; }
.sitemap-block li { margin-bottom: 8px; font-size: 14px; }
.sitemap-block a:hover { color: var(--primary-dark); }

/* ============ 页脚 ============ */
.footer { background: #0d2c4d; color: rgba(255,255,255,.75); padding: 50px 0 24px; }
.footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; align-items: start; }
.footer h3 { color: #fff; font-size: 16px; margin-bottom: 18px; padding-bottom: 10px; position: relative; }
.footer h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--accent); border-radius: 2px; }
.footer .about p { font-size: 14px; line-height: 1.9; }
.footer .fnav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.footer .fnav li { margin-bottom: 0; }
.footer .fnav a { color: rgba(255,255,255,.75); font-size: 14px; }
.footer .fnav a:hover { color: #fff; }
.footer .contact li { margin-bottom: 12px; font-size: 14px; display: flex; gap: 8px; line-height: 1.6; }
.footer .qr { text-align: left; }
.footer .qr img { width: 120px; border-radius: 8px; }
.footer .qr p { font-size: 12px; text-align: left; margin-top: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 18px; text-align: center; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px 14px; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #fff; }

/* ============ 回到顶部 ============ */
.backtop {
  position: fixed; right: 24px; bottom: 24px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none; cursor: pointer; font-size: 20px;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: all .3s; z-index: 90;
}
.backtop.show { opacity: 1; visibility: visible; }
.backtop:hover { background: var(--primary-dark); }

/* ============ 404 ============ */
.error-page { text-align: center; padding: 100px 0; }
.error-page h1 { font-size: 80px; color: var(--primary); margin-bottom: 10px; }
.error-page p { color: var(--text-light); margin-bottom: 28px; }

/* ============ 工具类 ============ */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 30px; } .mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; } .mb-2 { margin-bottom: 20px; } .mb-3 { margin-bottom: 30px; } .mb-4 { margin-bottom: 40px; }
.hidden { display: none !important; }
.note {
  background: #fff8e6; border: 1px solid #f0e0b0; color: #8a6d1a;
  border-radius: 6px; padding: 12px 16px; font-size: 14px; margin: 14px 0;
}

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-img { display: none; }
  .footer .container { grid-template-columns: 1fr 1fr; }
  .footer .about { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 24px; }
  .section { padding: 40px 0; }
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--white);
    flex-direction: column; padding: 12px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--border);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; width: 100%; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav a:last-child { border-bottom: none; }
  .header-cta .phone { display: none; }
  .topbar .welcome { display: none; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-main { grid-template-columns: 1fr; }
  .prod-top { grid-template-columns: 1fr; }
  .news-list-ul li { flex-direction: column; }
  .news-list-ul .thumb { width: 100%; height: 180px; }
  .news-list-ul .txt { padding: 16px; }
  .footer .container { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 56px 0; }
  .hero h1 { font-size: 30px; }
  .page-hero h1, .page-hero .hero-title { font-size: 26px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .about-points { grid-template-columns: 1fr; }
}

/* ============ 小屏手机（≤480px） ============ */
@media (max-width: 480px) {
  .logo img { height: 34px; }
  .logo-text { font-size: 15px; }
  .logo-text small { display: none; }
  .page-hero { padding: 48px 0 40px; }
  .hero-stats { gap: 20px; }
  .hero-stats .num { font-size: 26px; }
  .prod-cta .btn-lg { padding: 12px 22px; font-size: 15px; }
}
