/* ============================================
   Service Page - WHY FULL-FILL Section
   ============================================ */
.why-fullfill-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.why-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.why-stat-card {
  position: relative;
  padding: 50px 40px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-stat-card:hover {
  border-color: rgba(179, 27, 27, 0.3);
  box-shadow: 0 15px 50px rgba(179, 27, 27, 0.15);
  transform: translateY(-10px);
}

.stat-number-large {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 0;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: #f5f5f5;
}

.why-stat-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.stat-circle {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
  margin: 0 auto 30px;
}

.stat-circle-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border: 8px solid var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(179, 27, 27, 0.15);
  transition: all 0.4s ease;
}

.why-stat-card:hover .stat-circle-inner {
  box-shadow: 0 8px 30px rgba(179, 27, 27, 0.25);
  transform: scale(1.05);
}

.stat-value-main {
  margin-bottom: 10px;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-color);
}

.stat-value-main .stat-unit {
  font-size: 36px;
}

.stat-label-main {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.1em;
}

.stat-title {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}

.stat-description {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  text-align: left;
}

/* Responsive */
@media (max-width: 1200px) {
  .why-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .why-fullfill-section {
    padding: 80px 0;
  }
  .why-stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  .why-stat-card {
    padding: 40px 30px;
  }
  .stat-number-large {
    top: 15px;
    right: 20px;
    font-size: 80px;
  }
  .stat-circle {
    width: 180px;
    height: 180px;
  }
  .stat-value-main {
    font-size: 48px;
  }
  .stat-value-main .stat-unit {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .why-fullfill-section {
    padding: 60px 0;
  }
  .why-stat-card {
    padding: 35px 25px;
  }
  .stat-number-large {
    font-size: 64px;
  }
  .why-stat-card h3 {
    font-size: 18px;
  }
  .stat-circle {
    width: 160px;
    height: 160px;
  }
  .stat-circle-inner {
    border-width: 6px;
  }
  .stat-value-main {
    font-size: 40px;
  }
  .stat-value-main .stat-unit {
    font-size: 26px;
  }
  .stat-label-main {
    font-size: 11px;
  }
  .stat-title {
    font-size: 16px;
  }
  .stat-description {
    font-size: 13px;
  }
}