/* ================================
   宏佳科技 - 企业官网样式表
   商务·简约·大气
   ================================ */

/* ===== 基础重置 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a3a5c;
  --primary-light: #2c5f8a;
  --accent: #c8a45c;
  --accent-light: #dbb976;
  --dark: #1a1a2e;
  --gray-1: #f5f6f8;
  --gray-2: #e8eaed;
  --gray-3: #c4c7cc;
  --gray-4: #80868b;
  --gray-5: #5f6368;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-light: #5f6368;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --nav-height: 70px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== 容器 ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== 导航栏 ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height);
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  z-index: 1000; transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--gray-2); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.logo .logo-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; font-weight: 700;
}
.logo .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo .logo-text small { font-size: 0.65rem; font-weight: 400; color: var(--gray-4); letter-spacing: 1px; }

.nav-menu { display: flex; gap: 32px; align-items: center; }
.nav-menu a { font-size: 0.95rem; font-weight: 500; color: var(--text); position: relative; padding: 4px 0; }
.nav-menu a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width var(--transition);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--primary); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--primary); transition: all var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ===== Hero 区域 ===== */
.hero {
  height: 100vh; min-height: 600px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M30 0L0 30v30h60V30z" fill="%23ffffff" opacity="0.02"/></svg>');
  animation: heroPattern 20s linear infinite;
}
@keyframes heroPattern { from { transform: translate(0,0); } to { transform: translate(60px,60px); } }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particle {
  position: absolute; width: 4px; height: 4px; background: rgba(200,164,92,0.4);
  border-radius: 50%; animation: floatParticle 15s infinite ease-in-out;
}
@keyframes floatParticle {
  0%,100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50% { transform: translateY(-100px) translateX(30px); opacity: 0.8; }
}
.hero-content { text-align: center; color: #fff; z-index: 2; padding: 0 24px; max-width: 900px; }
.hero-content h1 {
  font-size: 3.2rem; font-weight: 700; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
  font-size: 1.2rem; margin-bottom: 36px; opacity: 0;
  animation: fadeUp 1s 0.6s forwards; color: rgba(255,255,255,0.85);
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; opacity: 0; animation: fadeUp 1s 0.9s forwards; flex-wrap: wrap; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== 按钮 ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 32px; border-radius: var(--radius); font-size: 0.95rem;
  font-weight: 500; cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-light); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(200,164,92,0.4); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; background: transparent; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-light); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== 通用 Section ===== */
.section { padding: 80px 0; }
.section-gray { background: var(--gray-1); }
.section-dark { background: var(--dark); color: #fff; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-tag {
  display: inline-block; font-size: 0.8rem; color: var(--accent); font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.section-header h2 { font-size: 2.2rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-header .divider {
  width: 60px; height: 3px; background: var(--accent); margin: 16px auto 0; border-radius: 2px;
}

/* ===== 数据统计 ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  text-align: center; padding: 32px 16px; background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card .stat-num { font-size: 2.8rem; font-weight: 700; color: var(--primary); }
.stat-card .stat-num span { font-size: 1.2rem; color: var(--accent); }
.stat-card .stat-label { font-size: 0.95rem; color: var(--text-light); margin-top: 8px; }

/* ===== 产品卡片 ===== */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.product-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card .product-img {
  height: 240px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-card .product-img .product-icon { font-size: 4rem; }
.product-card .product-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 12px; }
.product-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.product-card .product-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.product-card .product-features li {
  font-size: 0.8rem; padding: 4px 12px; background: var(--gray-1); border-radius: 20px;
  color: var(--gray-5);
}
.product-card .product-link {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: 0.9rem;
  color: var(--accent);
}
.product-card .product-link:hover { gap: 10px; }

/* 产品背景渐变 */
.bg-grad-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.bg-grad-2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.bg-grad-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.bg-grad-4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }

/* ===== img 标签适配（object-fit 防裁切） ===== */
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-card .case-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cert-item.cert-photo { padding: 0; overflow: hidden; position: relative; }
.cert-item.cert-photo img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 200px; }
.about-visual { position: relative; }
.about-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.about-visual .visual-text { position: relative; z-index: 2; }

/* 服务流程大图标（contact.html flow_01-06）— 使用内联样式，保留原始 cert-icon emoji 样式 */
/* about-feature 图标 — 恢复原始渐变背景文字/emoji 样式 */

/* ===== 关于我们 ===== */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text h2 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.about-feature { display: flex; gap: 12px; align-items: flex-start; }
.about-feature .feature-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem;
}
.about-feature h4 { font-size: 1rem; color: var(--primary); margin-bottom: 4px; }
.about-feature p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

.about-visual {
  position: relative; height: 400px; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
}
.about-visual .visual-text { color: #fff; text-align: center; z-index: 1; }
.about-visual .visual-text .big-num { font-size: 5rem; font-weight: 700; color: var(--accent); }
.about-visual .visual-text .sub-text { font-size: 1.1rem; margin-top: 8px; }

/* ===== 发展历程 ===== */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: var(--gray-2); transform: translateX(-50%);
}
.timeline-item { position: relative; width: 50%; padding: 0 40px 40px 0; }
.timeline-item:nth-child(even) { left: 50%; padding: 0 0 40px 40px; }
.timeline-item::before {
  content: ''; position: absolute; right: -6px; top: 6px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: var(--shadow-sm);
}
.timeline-item:nth-child(even)::before { left: -6px; right: auto; }
.timeline-card {
  background: #fff; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.timeline-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.timeline-card .year { font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.timeline-card h4 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
.timeline-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== 合作伙伴 ===== */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px; }
.partner-card {
  background: #fff; border-radius: var(--radius); padding: 32px 16px; text-align: center;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid var(--gray-2);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.partner-card .partner-name { font-size: 1.1rem; font-weight: 600; color: var(--primary); }

/* ===== PDF 下载卡片 ===== */
.pdf-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.pdf-card {
  display: flex; align-items: center; gap: 16px; background: #fff; padding: 24px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid var(--gray-2);
}
.pdf-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--accent); }
.pdf-card .pdf-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
}
.pdf-card .pdf-info { flex: 1; min-width: 0; }
.pdf-card .pdf-info h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pdf-card .pdf-info p { font-size: 0.8rem; color: var(--gray-4); }

/* ===== 联系页面 ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-size: 2rem; color: var(--primary); margin-bottom: 24px; }
.contact-info .contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info .contact-item .contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem;
}
.contact-info .contact-item h4 { font-size: 1rem; color: var(--primary); margin-bottom: 4px; }
.contact-info .contact-item p { font-size: 0.95rem; color: var(--text-light); }
.contact-form { background: #fff; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-form h2 { font-size: 1.5rem; color: var(--primary); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-2); border-radius: var(--radius);
  font-size: 0.95rem; font-family: inherit; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== 页脚 ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-col p { font-size: 0.9rem; line-height: 1.8; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon {
  width: 40px; height: 40px; border-radius: 8px; background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; font-weight: 700;
}
.footer-logo span { font-size: 1.2rem; font-weight: 700; color: #fff; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* ===== 滚动动画 ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: all 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: all 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ===== 页面Banner ===== */
.page-banner {
  height: 320px; margin-top: var(--nav-height);
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex; align-items: center; justify-content: center; text-align: center;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M30 0L0 30v30h60V30z" fill="%23ffffff" opacity="0.02"/></svg>');
}
.page-banner h1 { color: #fff; font-size: 2.5rem; font-weight: 700; z-index: 1; }
.page-banner p { color: rgba(255,255,255,0.7); margin-top: 12px; z-index: 1; }

/* ===== 案例卡片 ===== */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.case-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-card .case-img { height: 200px; position: relative; overflow: hidden; }
.case-card .case-body { padding: 24px; }
.case-card .case-tag {
  display: inline-block; font-size: 0.75rem; padding: 4px 12px; border-radius: 20px;
  background: var(--gray-1); color: var(--primary); margin-bottom: 12px; font-weight: 500;
}
.case-card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 8px; }
.case-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== 认证徽章 ===== */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.cert-item {
  background: #fff; border-radius: var(--radius); padding: 24px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-2); transition: all var(--transition);
}
.cert-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.cert-item .cert-icon { font-size: 2rem; margin-bottom: 12px; }
.cert-item h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 4px; }
.cert-item p { font-size: 0.8rem; color: var(--gray-4); }

/* ===== 产品对比表 ===== */
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--gray-2); font-size: 0.9rem; }
.compare-table th { background: var(--primary); color: #fff; font-weight: 500; }
.compare-table th:first-child { text-align: left; }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--primary); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--gray-1); }
.compare-table .check { color: #43e97b; font-weight: 700; }
.compare-table .cross { color: #e74c3c; }
.compare-table .neutral { color: var(--gray-4); }

/* ===== 回到顶部 ===== */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden; transition: all var(--transition);
  z-index: 999; box-shadow: var(--shadow-md); font-size: 1.2rem; border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ===== 移动端适配 ===== */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed; top: var(--nav-height); left: 0; width: 100%;
    background: #fff; flex-direction: column; padding: 20px;
    gap: 0; box-shadow: var(--shadow-md);
    transform: translateY(-150%); transition: transform var(--transition);
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-menu a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--gray-2); }
  .nav-toggle { display: flex; }

  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .about-visual { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .timeline::before { left: 0; }
  .timeline-item { width: 100%; padding: 0 0 32px 32px; }
  .timeline-item:nth-child(even) { left: 0; padding: 0 0 32px 32px; }
  .timeline-item::before { left: -6px; right: auto; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.7rem; }
  .page-banner { height: 240px; }
  .page-banner h1 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.6rem; }
  .container { padding: 0 16px; }
  .contact-form { padding: 24px; }
  .section-header h2 { font-size: 1.4rem; }
  .compare-table { font-size: 0.75rem; }
  .compare-table th, .compare-table td { padding: 8px 6px; }
}
