/* ====== ABOUT STATISTICS ====== */
:root{
    --stat-bg: #fff;
    --stat-border: #e5e7eb;   /* açık gri */
    --stat-title: #0f172a;    /* koyu */
    --stat-number: #000;
    --stat-muted: #64748b;
  }
  
  .about-statistics{
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* masaüstü: 2×2 */
  }
  
  @media (min-width: 1024px){
    .about-statistics{
      padding-left: 25%;
    }
  }
  
  .stat-card{
    background: transparent;
    padding: clamp(18px, 3.5vw, 28px);
    display: grid;
    grid-template-rows: auto auto 1fr;
    row-gap: 10px;
    min-height: 180px;
  }

  .stat-card:nth-child(2),
.stat-card:nth-child(3) {
  border: 1px solid black;
}

.stat-card:nth-child(2) .stat-value, .stat-card:nth-child(3) .stat-value {
  color: transparent !important;
  -webkit-text-stroke: 2px rgb(0, 0, 0);
}
  
  .stat-icon{
    width: 64px;
    height: 64px;
    border: 1px solid var(--stat-border);
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #fafafa;
  }
  
  .stat-icon img{
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
  }
  
  .stat-title{
    margin: 10px 0 0;
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 600;
    color: var(--stat-title);
  }
  
  .stat-value{
    margin-top: 8px;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 700;
    color: var(--stat-number);
    font-size: clamp(28px, 6vw, 48px);
    line-height: 1.1;
    letter-spacing: 0.5px;
  }
  
  .static-suffix{
    font-weight: 500;
    color: var(--stat-number);
  }
  
  