/* ══════════════════════════════════════════════════════
   style-v3.css · yinguobing.com
   Design: "晚灯" — Late-Night Lamp
   一盏灯在深夜亮着。光从顶部倾泻，往下渐暗。
   安静的，持续的，温暖的。
   ══════════════════════════════════════════════════════ */

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

:root {
  /* Color — 深夜 + 灯 */
  --bg-deep:      #090d12;   /* 页面底部 — 远离光源的最暗处 */
  --bg:           #0f1419;   /* 深夜蓝黑 */
  --bg-lit:       #151d26;   /* 靠近光源的微亮区域 */
  --surface:      #181d24;   /* 卡片表面 */
  --surface-lit:  #1d2330;   /* 卡片受光面 */
  --text:          #ede7dc;   /* 暖白 — 灯下的纸 */
  --text-soft:     #9e9a92;   /* 次级文字 */
  --text-dim:      #67645e;   /* 微弱文字 */
  --accent:        #e8a840;   /* 琥珀灯色 */
  --accent-glow:   #f2c050;   /* hover 提亮 */
  --accent-soft:   #c88a2e;   /* 边框用暗琥珀 */
  --rule:          #1e232b;   /* 分隔线 */
  --rule-strong:   #2a3039;

  /* Typography — 黑体为王 */
  --font-hei:   'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC',
                'Hiragino Sans GB', system-ui, sans-serif;
  --font-kai:   'Kaiti SC', 'STKaiti', 'KaiTi', serif;
  --font-latin: 'Inter', 'SF Pro Display', 'Helvetica Neue', system-ui, sans-serif;
  --font-body:  var(--font-hei), var(--font-latin);

  /* Type scale — 62.5% base → 1rem = 10px */
  --text-xs:   1.5rem;
  --text-sm:   1.7rem;
  --text-base: 1.9rem;
  --text-lg:   2.1rem;
  --text-xl:   2.6rem;
  --text-2xl:  3.4rem;
  --text-3xl:  4.4rem;
  --text-4xl:  6.0rem;

  /* Spacing */
  --page-header-py: 16rem 0 8rem;
  --section-py:     12rem;
  --container:       108rem;
  --container-narrow: 72rem;
  --gap:     2.4rem;
  --gap-lg:  4.8rem;
  --gap-xl:  8rem;

  /* Misc */
  --radius-sm: 4px;
  --radius-md: 6px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  overflow-x: hidden;

  /*
   * 光从顶部倾泻 — 页面上方被台灯照亮，越往下越沉入暗处。
   * radial-gradient：光源在顶部中央偏左（模拟右侧放了一盏灯）。
   */
  background:
    radial-gradient(
      ellipse 90% 55% at 50% 0%,
      var(--bg-lit) 0%,
      var(--bg) 50%,
      var(--bg-deep) 100%
    );
  background-attachment: fixed;

  word-break: break-word;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

/* CJK 段落对齐 */
.hero-target,
.hero-scene,
.identity-text p,
.claim-body p {
  text-align: justify;
  text-justify: inter-character;
  text-align-last: start;
}

/* ── Container ─────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 4.8rem);
  margin-inline: auto;
}

.container-narrow {
  width: min(var(--container-narrow), 100% - 4.8rem);
  margin-inline: auto;
}

/* ── Navigation ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 2rem 0;
  transition: background var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.nav.scrolled {
  background: rgba(15, 20, 25, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--rule);
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-hei);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 3.2rem;
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  color: var(--text-soft);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text);
  border-bottom-color: var(--accent-soft);
}

.nav-links .active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

/* ── Section headings ──────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-hei);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.10em;
  margin-bottom: 1.6rem;
}

.section-title {
  font-family: var(--font-hei);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 2rem;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-soft);
  line-height: 1.7;
}

/* ── Reveal animations ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(2.4rem);
}

.reveal.visible {
  animation: revealIn 0.8s var(--ease) forwards;
}

.reveal-d1.visible { animation-delay: 0.05s; }
.reveal-d2.visible { animation-delay: 0.12s; }
.reveal-d3.visible { animation-delay: 0.19s; }
.reveal-d4.visible { animation-delay: 0.26s; }

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════════════
   HERO — 首页 — 光最亮的地方
   ════════════════════════════════════════════════════ */
.home-hero {
  padding: var(--page-header-py);
  position: relative;
  overflow: hidden;
}

/*
 * ═════ 签名字：灯的光晕 ═════
 *
 * 一盏灯从顶部偏右投射暖光。
 * 不是装饰 — 是整个页面的光源。
 * 6s 慢呼吸，像真实灯丝的温度波动。
 */
.hero-glow {
  position: absolute;
  top: -10vh;
  left: -5vw;
  right: -5vw;
  height: 90vh;
  pointer-events: none;
  background: radial-gradient(
    ellipse 50% 40% at 55% 28%,
    rgba(232, 168, 64, 0.22) 0%,
    rgba(232, 168, 64, 0.10) 25%,
    rgba(232, 168, 64, 0.03) 55%,
    transparent 75%
  );
  animation: lampBreathe 6s ease-in-out infinite;
}

@keyframes lampBreathe {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

.home-hero-content {
  max-width: 64rem;
  position: relative;
  z-index: 1;
}

/*
 * Hero 标题 — Black (900) 字重。
 * 暗底上的极端字重对比是黑体最擅长的事。
 * 微弱的暖光 text-shadow 模拟纸面被灯照亮。
 */
.home-hero .hero-title {
  font-family: var(--font-hei);
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: 1.35;
  color: var(--text);
  text-shadow: 0 0 80px rgba(232, 168, 64, 0.15),
               0 0 160px rgba(232, 168, 64, 0.06);
  margin-bottom: 2.8rem;
}

.home-hero .hero-sub {
  font-size: var(--text-lg);
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 3.2rem;
}

/* 灯下的笔记 — 唯一使用楷体的地方 */
.hero-sub-kai {
  font-family: var(--font-kai) !important;
  font-size: var(--text-lg);
  color: var(--text-soft);
  line-height: 1.85;
}

.home-hero .hero-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.home-hero .hero-links a {
  font-size: var(--text-sm);
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.home-hero .hero-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hero-link-sep {
  color: var(--rule-strong);
  font-size: var(--text-sm);
  user-select: none;
}

/* ════════════════════════════════════════════════════
   INSIGHT — 核心观点
   ════════════════════════════════════════════════════ */
.insight {
  padding: var(--section-py) 0;
  /* 离光源近 — 微亮 */
  background: linear-gradient(180deg,
    rgba(21, 29, 38, 0.60) 0%,
    rgba(24, 29, 36, 0.45) 100%
  );
}

.claim-content {
  max-width: 64rem;
}

.claim-title {
  font-family: var(--font-hei);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2.4rem;
}

.claim-quote {
  font-family: var(--font-hei);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-soft);
  border-left: 4px solid var(--accent);
  padding: 1.6rem 0 1.6rem 2.4rem;
  margin-bottom: 3.2rem;
}

.claim-body p {
  font-size: var(--text-base);
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

/* ════════════════════════════════════════════════════
   SERVICES — 三条服务线
   ════════════════════════════════════════════════════ */
.about-services {
  padding: var(--section-py) 0;
  /* 中间段 — 比 hero 暗，比底部亮 */
  background: linear-gradient(180deg,
    rgba(15, 20, 25, 0.30) 0%,
    rgba(15, 20, 25, 0.15) 100%
  );
}

.about-section-head {
  margin-bottom: var(--gap-xl);
}

.about-section-head .section-label {
  margin-bottom: 1.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

/*
 * 卡片 — 一侧被灯照亮。
 * 左上角微亮（面朝光源），右下角沉入暗处。
 */
.service-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg,
    var(--surface-lit) 0%,
    var(--surface) 45%,
    var(--surface) 100%
  );
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 4rem 3.2rem;
  transition: border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.service-card:hover {
  border-color: var(--accent-soft);
  box-shadow:
    0 2px 24px rgba(232, 168, 64, 0.08),
    inset 0 1px 0 rgba(232, 168, 64, 0.04);
  transform: translateY(-2px);
}

.service-card h3 {
  font-family: var(--font-hei);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.2rem;
  padding-bottom: 1.4rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.service-card > p {
  font-size: var(--text-sm);
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-done {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.service-done li {
  font-size: var(--text-sm);
  color: var(--text-soft);
  line-height: 1.7;
  padding-left: 1.8rem;
  position: relative;
}

.service-done li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-soft);
}

/* ── Service evidence ──────────────────────── */
.service-evidence {
  margin-top: auto;
  padding-top: 2.4rem;
  border-top: 1px solid var(--rule);
}

.service-evidence-label {
  display: block;
  font-family: var(--font-hei);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.service-evidence-links {
  font-size: var(--text-sm);
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.service-evidence-links a {
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.service-evidence-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.service-evidence-desc {
  color: var(--text-dim);
}

/* ════════════════════════════════════════════════════
   TRUST — 为什么信任
   ════════════════════════════════════════════════════ */
.trust {
  padding: var(--section-py) 0;
  /* 靠近底部 — 更暗 */
  background: linear-gradient(180deg,
    rgba(24, 29, 36, 0.35) 0%,
    rgba(9, 13, 18, 0.25) 100%
  );
}

.about-trust--paper {
  background: transparent;
}

.trust-header {
  margin-bottom: var(--gap-xl);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap);
  margin-bottom: 6.4rem;
}

.stat-item {
  text-align: center;
  padding: 3.2rem 1.6rem;
}

/*
 * 统计数字 — 灯下最亮的元素。
 * 琥珀色，粗字重，带 glow。
 */
.stat-num {
  font-family: var(--font-hei);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.2;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(232, 168, 64, 0.2);
  white-space: nowrap;
  margin-bottom: 0.8rem;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--text-dim);
  line-height: 1.5;
  white-space: nowrap;
}

.trust-closing {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.trust-closing p {
  font-family: var(--font-hei);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 3.2rem;
}

.trust-contact {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.trust-contact a {
  font-size: var(--text-sm);
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--duration) var(--ease);
}

.trust-contact a:hover {
  color: var(--accent);
}

.trust-contact a::after {
  content: ' \2192';
  font-family: var(--font-latin);
}

/* ════════════════════════════════════════════════════
   CTA — 页面最底部，光最远处
   ════════════════════════════════════════════════════ */
.cta {
  padding: var(--section-py) 0;
  text-align: center;
  /* 最底部 — 最暗 */
  background: linear-gradient(180deg,
    rgba(9, 13, 18, 0.3) 0%,
    rgba(9, 13, 18, 0.6) 100%
  );
}

.cta--surface {
  background: linear-gradient(180deg,
    rgba(24, 29, 36, 0.3) 0%,
    rgba(9, 13, 18, 0.5) 100%
  );
}

.cta-title {
  font-family: var(--font-hei);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 1.6rem;
}

.cta-desc {
  font-size: var(--text-lg);
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto 5.6rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--gap);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2rem 3.6rem;
  border-radius: var(--radius-md);
  font-family: var(--font-hei);
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
  box-shadow: 0 0 40px rgba(232, 168, 64, 0.15);
}

.btn-primary:hover {
  background: var(--accent-glow);
  border-color: var(--accent-glow);
  transform: translateY(-1px);
  box-shadow: 0 0 60px rgba(232, 168, 64, 0.30);
}

.btn-primary .btn-sub {
  color: rgba(15, 20, 25, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(232, 168, 64, 0.06);
  transform: translateY(-1px);
}

.btn-secondary .btn-sub {
  color: var(--text-dim);
}

.btn-sub {
  font-size: var(--text-xs);
  font-weight: 400;
}

/* ── WeChat QR hover ────────────────────────── */
.wechat-btn-wrapper {
  position: relative;
  display: inline-flex;
}

.wechat-qr {
  position: absolute;
  bottom: calc(100% + 2rem);
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(232, 168, 64, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
}

.wechat-qr::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--bg);
}

.wechat-btn-wrapper:hover .wechat-qr {
  opacity: 1;
}

/* ════════════════════════════════════════════════════
   FOOTER — 最暗处
   ════════════════════════════════════════════════════ */
.footer {
  padding: 4.8rem 0;
  border-top: 1px solid var(--rule);
  background: rgba(9, 13, 18, 0.5);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-hei);
  font-size: var(--text-sm);
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-soft);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.footer-links a:hover {
  color: var(--text);
}

/* ════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════ */

.about-section-head {
  margin-bottom: var(--gap-xl);
}

.about-section-head .section-label {
  margin-bottom: 1.2rem;
}

/* ── Identity ────────────────────────────────── */
.about-header {
  padding: var(--page-header-py);
}

.identity {
  display: flex;
  gap: 4.8rem;
  align-items: flex-start;
}

.portrait {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-soft);
  box-shadow: 0 0 40px rgba(232, 168, 64, 0.10);
}

.identity-text {
  flex: 1;
  min-width: 0;
}

.identity-name {
  font-family: var(--font-hei);
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text);
  text-shadow: 0 0 60px rgba(232, 168, 64, 0.10);
  margin-bottom: 1.6rem;
}

.identity-text p {
  font-size: var(--text-base);
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ── Timeline ────────────────────────────────── */
.about-timeline {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg,
    rgba(21, 29, 38, 0.60) 0%,
    rgba(24, 29, 36, 0.35) 100%
  );
}

.timeline {
  position: relative;
  padding-left: 5.6rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.3rem;
  top: 0.8rem;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,
    var(--accent-soft) 0%,
    var(--rule) 40%,
    var(--rule) 100%
  );
}

.timeline-entry {
  position: relative;
  padding-bottom: 4.8rem;
}

.timeline-entry:last-child {
  padding-bottom: 0;
}

.timeline-entry::before {
  content: '';
  position: absolute;
  left: -5.6rem;
  top: 1.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(232, 168, 64, 0.3);
  transform: translateX(-1px);
}

.timeline-entry:last-child::before {
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 2px var(--surface), 0 0 16px rgba(232, 168, 64, 0.2);
}

.timeline-era {
  font-family: var(--font-kai);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--accent-soft);
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.timeline-entry h3 {
  font-family: var(--font-hei);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.timeline-entry p {
  font-size: var(--text-base);
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 64rem;
}

/* ── Trust (on about page) ──────────────────── */
.about-trust {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg,
    rgba(15, 20, 25, 0.30) 0%,
    rgba(9, 13, 18, 0.20) 100%
  );
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --text-4xl: 4.0rem;
    --text-3xl: 3.2rem;
    --text-2xl: 2.8rem;
    --page-header-py: 12rem 0 6rem;
    --section-py: 8rem;
    --gap-xl: 5.6rem;
  }

  .nav-links {
    display: none;
  }

  .home-hero .hero-title {
    font-size: var(--text-2xl);
  }

  .home-hero .hero-sub,
  .hero-sub-kai {
    font-size: var(--text-base);
  }

  .hero-glow {
    height: 55vh;
  }

  /* Identity */
  .identity {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3.2rem;
  }

  .portrait {
    width: 140px;
    height: 140px;
  }

  .identity-name {
    font-size: var(--text-2xl);
  }

  /* Timeline */
  .timeline {
    padding-left: 4rem;
  }

  .timeline-entry::before {
    left: -4rem;
    transform: translateX(-1px);
  }

  .timeline-entry h3 {
    font-size: var(--text-lg);
  }

  /* Services grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--gap);
  }

  /* Trust stats */
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
  }

  .stat-num {
    font-size: var(--text-2xl);
  }

  /* CTA */
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 1.6rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --text-4xl: 3.4rem;
    --text-3xl: 2.8rem;
  }

  .container,
  .container-narrow {
    width: calc(100% - 3.2rem);
  }

  .home-hero .hero-title {
    font-size: var(--text-xl);
  }

  .home-hero .hero-links {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .trust-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .stat-item {
    padding: 2rem 0.8rem;
  }
}
