/* ============================================================
   湖北霁浩水利工程有限公司 - 响应式官网样式
   ============================================================ */
:root {
  --c-primary: #0d5fa8;
  --c-primary-dark: #0a3d62;
  --c-accent: #17a2d8;
  --c-gold: #f0a500;
  --c-navy: #082c47;
  --c-bg: #f4f8fc;
  --c-card: #ffffff;
  --c-ink: #1f2d3d;
  --c-muted: #5b6b7c;
  --c-line: #e3ecf4;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 95, 168, .10);
  --shadow-lg: 0 18px 50px rgba(8, 44, 71, .16);
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  --header-h: 74px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
section[id], footer[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px 30px; border-radius: 999px; font-size: 15px; font-weight: 600;
  border: 2px solid transparent; transition: all .25s ease; white-space: nowrap;
}
.btn-primary { background: var(--c-primary); color: #fff; box-shadow: 0 8px 22px rgba(13,95,168,.35); }
.btn-primary:hover { background: var(--c-primary-dark); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.75); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: var(--c-primary); color: var(--c-primary); background: transparent; }
.btn-outline:hover { background: var(--c-primary); color: #fff; }
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- 顶部导航 ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(8, 44, 71, .35); backdrop-filter: blur(10px);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 4px 20px rgba(8,44,71,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; transition: color .3s; }
.brand-logo { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; color: #fff;
  background: linear-gradient(135deg, var(--c-accent), var(--c-primary)); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-size: 20px; letter-spacing: 1px; }
.brand-text small { font-size: 10px; letter-spacing: .5px; opacity: .75; font-weight: 400; }

.site-header.scrolled .brand, .site-header.scrolled .header-tel { color: var(--c-ink); }
.site-header.scrolled .brand-logo { box-shadow: var(--shadow); }

.main-nav { display: flex; gap: 6px; }
.main-nav a {
  position: relative; padding: 10px 16px; color: rgba(255,255,255,.92); font-size: 15.5px; font-weight: 500;
  border-radius: 8px; transition: color .2s, background .2s;
}
.site-header.scrolled .main-nav a { color: var(--c-ink); }
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(23,162,216,.9); }
.site-header.scrolled .main-nav a:hover, .site-header.scrolled .main-nav a.active { color: #fff; background: var(--c-primary); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-tel { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 600; font-size: 15px; }
.header-tel svg { color: var(--c-accent); }
.site-header.scrolled .header-tel svg { color: var(--c-primary); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle { color: #fff; }
.site-header.scrolled .nav-toggle { color: var(--c-ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 首屏 ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; color: #fff; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,44,71,.88) 0%, rgba(10,61,98,.72) 42%, rgba(13,95,168,.28) 100%); }
.hero-content { position: relative; z-index: 2; padding-top: var(--header-h); }
.hero-tag {
  display: inline-block; padding: 7px 18px; margin-bottom: 20px; font-size: 14px; letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,.45); border-radius: 999px; background: rgba(255,255,255,.1); backdrop-filter: blur(4px);
}
.hero h1 { font-size: clamp(40px, 6.4vw, 74px); font-weight: 800; letter-spacing: 4px; line-height: 1.15; margin-bottom: 18px; }
.hero h1 span { color: var(--c-gold); margin: 0 6px; }
.hero-sub { font-size: clamp(15px, 2vw, 19px); color: rgba(255,255,255,.9); margin-bottom: 34px; max-width: 640px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 60px; border-radius: var(--radius); overflow: hidden;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(12px);
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 22px 10px; border-right: 1px solid rgba(255,255,255,.2); }
.stat:last-child { border-right: 0; }
.stat b { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: #fff; }
.stat b::after { content: "+"; color: var(--c-gold); font-size: .7em; margin-left: 2px; }
.stat span { font-size: 13.5px; color: rgba(255,255,255,.8); }

/* ---------- 通用区块 ---------- */
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.eyebrow { color: var(--c-accent); font-weight: 700; letter-spacing: 3px; font-size: 13px; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: var(--c-navy); letter-spacing: 1px; }
.section-head h2::after { content: ""; display: block; width: 56px; height: 4px; margin: 16px auto 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary)); }
.section-desc { margin-top: 16px; color: var(--c-muted); }
.section-more { text-align: center; margin-top: 44px; }

/* ---------- 关于我们 ---------- */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.about-text p { color: var(--c-muted); margin-bottom: 16px; }
.about-points { margin: 22px 0 30px; display: grid; gap: 12px; }
.about-points li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--c-ink); }
.about-points svg { color: var(--c-accent); flex: none; }
.about-media { position: relative; }
.about-img-frame {
  position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #dbeaf7, #eef6fb); box-shadow: var(--shadow-lg);
}
.about-img-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.about-badge {
  position: absolute; right: -16px; bottom: -20px; z-index: 3; display: flex; align-items: center; gap: 12px;
  background: var(--c-primary); color: #fff; padding: 16px 24px; border-radius: 16px; box-shadow: var(--shadow-lg);
}
.about-badge b { font-size: 34px; font-weight: 800; }
.about-badge span { font-size: 13px; line-height: 1.4; opacity: .92; }

/* ---------- 占位图 ---------- */
.ph-box {
  position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: #8fb3d3; text-align: center;
  background:
    radial-gradient(circle at 20% 25%, rgba(23,162,216,.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(13,95,168,.16), transparent 42%),
    linear-gradient(160deg, #e2f0fa, #d2e6f5);
}
.ph-box p { font-size: 13px; font-weight: 600; letter-spacing: 1px; color: #6f9ac0; }
.ph-box small { font-weight: 400; color: #9dbddb; }
.about-img-frame.ph-on { box-shadow: var(--shadow); }

/* ---------- 业务领域 ---------- */
.services { position: relative; background: linear-gradient(180deg, #eef5fb 0%, #f7fafd 100%); padding-top: 120px; }
.wave-top { position: absolute; top: -1px; left: 0; right: 0; line-height: 0; }
.wave-top svg { width: 100%; height: 60px; display: block; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 34px 28px; border: 1px solid var(--c-line);
  box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden;
}
.service-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.s-icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 16px; margin-bottom: 20px; color: #fff;
  background: linear-gradient(135deg, var(--c-accent), var(--c-primary)); box-shadow: 0 10px 22px rgba(13,95,168,.3); }
.service-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--c-navy); }
.service-card p { font-size: 14.5px; color: var(--c-muted); margin-bottom: 16px; }
.service-card a { color: var(--c-primary); font-weight: 600; font-size: 14px; }
.service-card a:hover { color: var(--c-accent); }

/* ---------- 资质荣誉 ---------- */
.honors { background: #fff; padding: 40px 0; }
.honor-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.honor-item { display: flex; align-items: center; gap: 14px; padding: 22px 18px; border-radius: var(--radius);
  background: var(--c-bg); border: 1px solid var(--c-line); transition: transform .25s, box-shadow .25s; }
.honor-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.honor-item svg { color: var(--c-gold); flex: none; }
.honor-item b { display: block; font-size: 15.5px; color: var(--c-navy); }
.honor-item span { font-size: 13px; color: var(--c-muted); }

/* ---------- 工程业绩 ---------- */
.projects { background: var(--c-bg); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.project-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s; }
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.proj-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.proj-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; transition: transform .5s; }
.project-card:hover .proj-img img { transform: scale(1.06); }
.proj-img .ph-box { z-index: 1; }
.proj-img.ph-on { background: linear-gradient(160deg, #e2f0fa, #d2e6f5); }
.tag { position: absolute; top: 14px; left: 14px; z-index: 3; padding: 5px 14px; font-size: 12.5px; font-weight: 600;
  color: #fff; border-radius: 999px; background: rgba(13,95,168,.88); backdrop-filter: blur(4px); }
.proj-body { padding: 22px 22px 24px; }
.proj-body h3 { font-size: 17.5px; color: var(--c-navy); margin-bottom: 8px; }
.proj-body p { font-size: 14px; color: var(--c-muted); margin-bottom: 14px; }
.proj-meta { display: flex; justify-content: space-between; gap: 10px; font-size: 12.5px; color: #7d8fa1; flex-wrap: wrap; }

/* ---------- 智慧水利 ---------- */
.smart { position: relative; background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-primary-dark) 55%, var(--c-primary) 100%); color: #fff; overflow: hidden; }
.smart::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; top: -180px; right: -140px;
  background: radial-gradient(circle, rgba(23,162,216,.35), transparent 65%); }
.smart::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; bottom: -160px; left: -120px;
  background: radial-gradient(circle, rgba(23,162,216,.25), transparent 65%); }
.smart-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.smart-text .eyebrow { color: #7fd4f5; }
.smart-text h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; letter-spacing: 1px; margin-bottom: 18px; }
.smart-text > p { color: rgba(255,255,255,.85); margin-bottom: 22px; }
.smart-text ul { display: grid; gap: 12px; }
.smart-text li { position: relative; padding-left: 22px; color: rgba(255,255,255,.92); font-size: 15px; }
.smart-text li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 3px;
  background: var(--c-accent); transform: rotate(45deg); }
.smart-text li b { color: #7fd4f5; margin-right: 2px; }

.smart-panel { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2); border-radius: 16px; overflow: hidden; backdrop-filter: blur(8px); }
.panel-head { display: flex; align-items: center; gap: 7px; padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,.15); }
.panel-head .dot { width: 10px; height: 10px; border-radius: 50%; background: #ff6b6b; }
.panel-head .dot:nth-child(2) { background: #ffd166; }
.panel-head .dot:nth-child(3) { background: #6bcb77; }
.panel-head b { flex: 1; font-size: 14px; margin-left: 6px; font-weight: 600; }
.panel-head em { font-style: normal; font-size: 12px; padding: 3px 10px; border-radius: 999px; background: rgba(107,203,119,.2); color: #8fe39a; }
.panel-body { padding: 18px; display: grid; gap: 16px; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kpis div { background: rgba(255,255,255,.08); border-radius: 10px; padding: 12px 10px; text-align: center; }
.kpis b { display: block; font-size: 22px; color: #7fd4f5; }
.kpis span { font-size: 12px; color: rgba(255,255,255,.75); }
.chart { position: relative; height: 120px; display: flex; align-items: flex-end; gap: 6px; padding: 0 6px 4px;
  background: rgba(255,255,255,.05); border-radius: 10px; }
.chart span { position: absolute; top: 8px; left: 10px; font-size: 11px; color: rgba(255,255,255,.6); }
.chart i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, #7fd4f5, var(--c-accent)); opacity: .9; animation: growBar 1.2s ease both; transform-origin: bottom; }
.chart i:nth-child(odd) { background: linear-gradient(180deg, #b7e6fb, #17a2d8); }
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.rows { display: grid; gap: 8px; }
.rows div { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.06); border-radius: 8px; padding: 9px 12px; }
.rows div span { margin-left: auto; font-size: 12px; }
.rows .ok { width: 8px; height: 8px; border-radius: 50%; background: #6bcb77; flex: none; }
.rows .warn { width: 8px; height: 8px; border-radius: 50%; background: #ffd166; flex: none; }
.rows div span { color: rgba(255,255,255,.7); }

/* ---------- 新闻资讯 ---------- */
.news { background: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { display: flex; gap: 18px; background: var(--c-bg); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 24px; transition: transform .3s, box-shadow .3s; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-date { flex: none; width: 64px; height: 72px; border-radius: 12px; text-align: center; padding-top: 10px;
  background: linear-gradient(160deg, var(--c-accent), var(--c-primary)); color: #fff; }
.news-date b { display: block; font-size: 24px; line-height: 1.1; }
.news-date span { font-size: 12px; opacity: .9; }
.news-body h3 { font-size: 16.5px; color: var(--c-navy); line-height: 1.5; margin-bottom: 8px; }
.news-body p { font-size: 13.5px; color: var(--c-muted); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-body em { font-style: normal; font-size: 13px; color: var(--c-primary); font-weight: 600; }

/* ---------- 联系我们 ---------- */
.contact { background: linear-gradient(180deg, var(--c-bg), #e9f2fa); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.contact-info { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.ci-item { display: flex; gap: 16px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow); }
.ci-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; flex: none; color: #fff;
  background: linear-gradient(135deg, var(--c-accent), var(--c-primary)); }
.ci-item b { display: block; font-size: 15px; color: var(--c-navy); }
.ci-item p { font-size: 14px; color: var(--c-muted); }
/* ---------- 页脚 ---------- */
.site-footer { background: var(--c-navy); color: rgba(255,255,255,.82); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 60px 0 44px; }
.footer-grid .brand { color: #fff; margin-bottom: 14px; }
.f-brand p { font-size: 14px; color: rgba(255,255,255,.65); max-width: 320px; }
.f-col h4 { font-size: 16px; color: #fff; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.f-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 3px; border-radius: 3px; background: var(--c-accent); }
.f-col a { display: block; padding: 5px 0; font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s, padding-left .2s; }
.f-col a:hover { color: #7fd4f5; padding-left: 6px; }
.f-col p { font-size: 14px; color: rgba(255,255,255,.7); padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.55); text-align: center; }

/* ---------- 返回顶部 ---------- */
.to-top { position: fixed; right: 24px; bottom: 28px; z-index: 90; width: 46px; height: 46px; border-radius: 50%; border: 0;
  display: grid; place-items: center; color: #fff; background: var(--c-primary); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(16px); transition: all .3s; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--c-primary-dark); }

/* ---------- 滚动动画 ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1024px) {
  .service-grid, .project-grid { grid-template-columns: repeat(2, 1fr); }
  .honor-strip { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .smart-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
    flex-direction: column; gap: 4px; padding: 16px 5%;
    background: rgba(255,255,255,.98); box-shadow: 0 18px 40px rgba(8,44,71,.14);
    transform: translateY(-16px); opacity: 0; visibility: hidden; transition: all .3s;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a { color: var(--c-ink) !important; font-size: 16px; padding: 12px 16px; }
  .main-nav a:hover, .main-nav a.active { background: var(--c-primary); color: #fff !important; }
  .nav-toggle { display: flex; }
  .btn-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
  .section { padding: 64px 0; }
  .header-tel span { display: none; }
  .header-tel { font-size: 0; }
  .header-tel svg { width: 22px; height: 22px; }
  .brand-text strong { font-size: 17px; }
  .brand-logo { width: 38px; height: 38px; }
  .hero { min-height: 92vh; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 44px; }
  .stat { border-bottom: 1px solid rgba(255,255,255,.2); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.2); }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .hero-actions .btn { flex: 1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 10px; bottom: -18px; padding: 12px 18px; }
  .about-badge b { font-size: 26px; }
  .service-grid, .project-grid, .news-grid, .honor-strip, .contact-grid, .smart-grid, .footer-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .contact-grid { gap: 28px; }
  .footer-grid { gap: 30px; padding: 44px 0 34px; }
  .to-top { right: 16px; bottom: 20px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .hero-tag { font-size: 12.5px; padding: 6px 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .news-card { flex-direction: row; }
  .stat { padding: 16px 8px; }
}
